Changeset 1822545 in mainline for uspace/app/gfxdemo/gfxdemo.c
- Timestamp:
- 2019-10-21T00:17:28Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b882c1f
- Parents:
- d18f3b7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gfxdemo/gfxdemo.c
rd18f3b7 r1822545 54 54 * @param h Height 55 55 */ 56 static errno_t demo_rects(gfx_context_t *gc, int w, int h)56 static errno_t demo_rects(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h) 57 57 { 58 58 gfx_color_t *color = NULL; … … 96 96 * @param h Height 97 97 */ 98 static errno_t demo_bitmap(gfx_context_t *gc, int w, int h)98 static errno_t demo_bitmap(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h) 99 99 { 100 100 gfx_bitmap_t *bitmap; … … 160 160 * @param h Height 161 161 */ 162 static errno_t demo_loop(gfx_context_t *gc, int w, int h)162 static errno_t demo_loop(gfx_context_t *gc, gfx_coord_t w, gfx_coord_t h) 163 163 { 164 164 errno_t rc; … … 215 215 surface_t *surface = NULL; 216 216 canvas_t *canvas = NULL; 217 int vw, vh;217 gfx_coord_t vw, vh; 218 218 errno_t rc; 219 219
Note:
See TracChangeset
for help on using the changeset viewer.