Changeset 371bd7d in mainline for uspace/srv/hid/console/gcons.c
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/srv/hid/console/gcons.c (moved) (moved from uspace/srv/console/gcons.c ) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/gcons.c
rcd82bb1 r371bd7d 38 38 #include <stdio.h> 39 39 #include <sys/mman.h> 40 #include <str ing.h>40 #include <str.h> 41 41 #include <align.h> 42 42 #include <bool.h> … … 241 241 242 242 /** Return x, where left <= x <= right && |a-x| == min(|a-x|) is smallest */ 243 static inline int limit(size_t a, size_t left,size_t right)243 static inline ssize_t limit(ssize_t a, ssize_t left, ssize_t right) 244 244 { 245 245 if (a < left) … … 261 261 mouse_x = limit(mouse_x + dx, 0, xres); 262 262 mouse_y = limit(mouse_y + dy, 0, yres); 263 264 async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y); 263 264 if (active_console != KERNEL_CONSOLE) 265 async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y); 265 266 } 266 267 … … 447 448 448 449 int pm = make_pixmap(_binary_gfx_anim_1_ppm_start, 449 ( int) &_binary_gfx_anim_1_ppm_size);450 (size_t) &_binary_gfx_anim_1_ppm_size); 450 451 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm); 451 452 452 453 pm = make_pixmap(_binary_gfx_anim_2_ppm_start, 453 ( int) &_binary_gfx_anim_2_ppm_size);454 (size_t) &_binary_gfx_anim_2_ppm_size); 454 455 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm); 455 456 456 457 pm = make_pixmap(_binary_gfx_anim_3_ppm_start, 457 ( int) &_binary_gfx_anim_3_ppm_size);458 (size_t) &_binary_gfx_anim_3_ppm_size); 458 459 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm); 459 460 460 461 pm = make_pixmap(_binary_gfx_anim_4_ppm_start, 461 ( int) &_binary_gfx_anim_4_ppm_size);462 (size_t) &_binary_gfx_anim_4_ppm_size); 462 463 async_msg_2(fbphone, FB_ANIM_ADDPIXMAP, an, pm); 463 464
Note:
See TracChangeset
for help on using the changeset viewer.
