Changeset 48f7e47 in mainline for uspace/lib/ipcgfx/src/client.c
- Timestamp:
- 2019-11-19T09:06:05Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 959ef5d
- Parents:
- 32dde7e8
- git-author:
- Jiri Svoboda <jiri@…> (2019-11-18 18:52:33)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-11-19 09:06:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ipcgfx/src/client.c
r32dde7e8 r48f7e47 62 62 }; 63 63 64 #include <stdio.h>65 66 64 /** Set color on IPC GC. 67 65 * … … 80 78 errno_t rc; 81 79 82 printf("ipc_gc_set_color\n");83 80 gfx_color_get_rgb_i16(color, &r, &g, &b); 84 81 … … 103 100 errno_t rc; 104 101 105 printf("ipc_gc_fill_rect\n");106 102 exch = async_exchange_begin(ipcgc->sess); 107 103 rc = async_req_4_0(exch, GC_FILL_RECT, rect->p0.x, rect->p0.y, … … 206 202 errno_t rc; 207 203 208 printf("ipc_gc_bitmap_destroy\n");209 210 204 exch = async_exchange_begin(ipcbm->ipcgc->sess); 211 205 rc = async_req_1_0(exch, GC_BITMAP_DESTROY, ipcbm->bmp_id);
Note:
See TracChangeset
for help on using the changeset viewer.