Changeset f93e4e3 in mainline
- Timestamp:
- 2020-11-08T22:24:45Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a09d401
- Parents:
- 3583ffb
- Location:
- uspace
- Files:
-
- 5 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/uidemo/meson.build
r3583ffb rf93e4e3 27 27 # 28 28 29 deps = [ ' display', 'ui' ]29 deps = [ 'ui' ] 30 30 src = files( 31 31 'uidemo.c', -
uspace/lib/gfx/src/bitmap.c
r3583ffb rf93e4e3 62 62 * 63 63 * @return EOK on success, EINVAL if parameters are invald, 64 * ENOMEM if insufficient resources, EIO if gra hic device connection64 * ENOMEM if insufficient resources, EIO if graphic device connection 65 65 * was lost 66 66 */ … … 92 92 * @param bitmap Bitmap 93 93 * 94 * @return EOK on success, EIO if gra hic device connection was lost94 * @return EOK on success, EIO if graphic device connection was lost 95 95 */ 96 96 errno_t gfx_bitmap_destroy(gfx_bitmap_t *bitmap) … … 112 112 * @param offs Bitmap offset or @c NULL for zero offset 113 113 * 114 * @return EOK on success, EIO if gra hic device connection was lost114 * @return EOK on success, EIO if graphic device connection was lost 115 115 */ 116 116 errno_t gfx_bitmap_render(gfx_bitmap_t *bitmap, gfx_rect_t *srect, … … 125 125 * @param alloc Allocation info structure to fill in 126 126 * 127 * @return EOK on success, EIO if gra hic device connection was lost127 * @return EOK on success, EIO if graphic device connection was lost 128 128 */ 129 129 errno_t gfx_bitmap_get_alloc(gfx_bitmap_t *bitmap, gfx_bitmap_alloc_t *alloc) -
uspace/lib/ui/meson.build
r3583ffb rf93e4e3 32 32 'src/dummygc.c', 33 33 'src/fixed.c', 34 'src/image.c', 34 35 'src/label.c', 35 36 'src/paint.c', … … 44 45 'test/control.c', 45 46 'test/fixed.c', 47 'test/image.c', 46 48 'test/label.c', 47 49 'test/main.c', -
uspace/lib/ui/test/label.c
r3583ffb rf93e4e3 79 79 } test_cb_resp_t; 80 80 81 /** Create and destroy button*/81 /** Create and destroy label */ 82 82 PCUT_TEST(create_destroy) 83 83 { … … 114 114 } 115 115 116 /** Set buttonrectangle sets internal field */116 /** Set label rectangle sets internal field */ 117 117 PCUT_TEST(set_rect) 118 118 { … … 138 138 } 139 139 140 /** Set buttontext horizontal alignment sets internal field */140 /** Set label text horizontal alignment sets internal field */ 141 141 PCUT_TEST(set_halign) 142 142 { … … 155 155 } 156 156 157 /** Set buttonrectangle sets internal field */157 /** Set label rectangle sets internal field */ 158 158 PCUT_TEST(set_text) 159 159 { … … 179 179 } 180 180 181 /** Paint button*/181 /** Paint label */ 182 182 PCUT_TEST(paint) 183 183 { -
uspace/lib/ui/test/main.c
r3583ffb rf93e4e3 33 33 PCUT_IMPORT(control); 34 34 PCUT_IMPORT(fixed); 35 PCUT_IMPORT(image); 35 36 PCUT_IMPORT(label); 36 37 PCUT_IMPORT(paint);
Note:
See TracChangeset
for help on using the changeset viewer.