Changeset 0008c0f in mainline for uspace/lib/ipcgfx/private/client.h


Ignore:
Timestamp:
2019-10-26T23:30:51Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
587b4cb
Parents:
7b882c1f
Message:

Bitmaps in IPC GC and in display server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ipcgfx/private/client.h

    r7b882c1f r0008c0f  
    5252};
    5353
     54/** Bitmap in IPC GC */
     55typedef struct {
     56        /** Containing IPC GC */
     57        struct ipc_gc *ipcgc;
     58        /** Allocation info */
     59        gfx_bitmap_alloc_t alloc;
     60        /** @c true if we allocated the bitmap, @c false if allocated by caller */
     61        bool myalloc;
     62        /** Rectangle covered by bitmap */
     63        gfx_rect_t rect;
     64        /** Server bitmap ID */
     65        sysarg_t bmp_id;
     66} ipc_gc_bitmap_t;
     67
    5468#endif
    5569
Note: See TracChangeset for help on using the changeset viewer.