Changeset 48f7e47 in mainline for uspace/lib/ipcgfx/src/client.c


Ignore:
Timestamp:
2019-11-19T09:06:05Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
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)
Message:

Port terminal application directly to display service

This is probably not the last stage, but it might be handy to have a working
terminal if the GUI is broken while it is being migrated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ipcgfx/src/client.c

    r32dde7e8 r48f7e47  
    6262};
    6363
    64 #include <stdio.h>
    65 
    6664/** Set color on IPC GC.
    6765 *
     
    8078        errno_t rc;
    8179
    82         printf("ipc_gc_set_color\n");
    8380        gfx_color_get_rgb_i16(color, &r, &g, &b);
    8481
     
    103100        errno_t rc;
    104101
    105         printf("ipc_gc_fill_rect\n");
    106102        exch = async_exchange_begin(ipcgc->sess);
    107103        rc = async_req_4_0(exch, GC_FILL_RECT, rect->p0.x, rect->p0.y,
     
    206202        errno_t rc;
    207203
    208         printf("ipc_gc_bitmap_destroy\n");
    209 
    210204        exch = async_exchange_begin(ipcbm->ipcgc->sess);
    211205        rc = async_req_1_0(exch, GC_BITMAP_DESTROY, ipcbm->bmp_id);
Note: See TracChangeset for help on using the changeset viewer.