Changeset a8eed5f in mainline for uspace/lib/gfx/test
- Timestamp:
- 2020-02-28T16:03:20Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7bb45e3
- Parents:
- 0e6e77f
- git-author:
- Jiri Svoboda <jiri@…> (2020-02-27 18:02:55)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-02-28 16:03:20)
- Location:
- uspace/lib/gfx/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/test/bitmap.c
r0e6e77f ra8eed5f 84 84 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 85 85 86 gfx_bitmap_params_init(¶ms); 86 87 params.rect.p0.x = 1; 87 88 params.rect.p0.y = 2; … … 120 121 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 121 122 123 gfx_bitmap_params_init(¶ms); 124 122 125 rc = gfx_bitmap_create(gc, ¶ms, NULL, &bitmap); 123 126 PCUT_ASSERT_ERRNO_VAL(EOK, rc); … … 159 162 rc = gfx_context_new(&ops, &tgc, &gc); 160 163 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 164 165 gfx_bitmap_params_init(¶ms); 161 166 162 167 rc = gfx_bitmap_create(gc, ¶ms, NULL, &bitmap); -
uspace/lib/gfx/test/coord.c
r0e6e77f ra8eed5f 598 598 599 599 /** Rectangle dimensions for reversed rectangle are computed correctly */ 600 PCUT_TEST(rect_dims_ straight)600 PCUT_TEST(rect_dims_reversed) 601 601 { 602 602 gfx_rect_t rect;
Note:
See TracChangeset
for help on using the changeset viewer.