Ignore:
Timestamp:
2021-10-24T08:28:43Z (3 years ago)
Author:
GitHub <noreply@…>
Children:
f628215
Parents:
2ce943a (diff), cd981f2a (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.
git-author:
Erik Kučák <35500848+Riko196@…> (2021-10-24 08:28:43)
git-committer:
GitHub <noreply@…> (2021-10-24 08:28:43)
Message:

Merge branch 'HelenOS:master' into master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfx/include/types/gfx/ops/context.h

    r2ce943a r8a9a41e  
    4444#include <types/gfx/coord.h>
    4545#include <types/gfx/context.h>
     46#include <stdbool.h>
    4647
    4748/** Graphics context ops */
     
    6465        /** Get bitmap allocation info */
    6566        errno_t (*bitmap_get_alloc)(void *, gfx_bitmap_alloc_t *);
     67        /** Get hardware cursor position */
     68        errno_t (*cursor_get_pos)(void *, gfx_coord2_t *);
     69        /** Set hardware cursor position */
     70        errno_t (*cursor_set_pos)(void *, gfx_coord2_t *);
     71        /** Set hardware cursor visibility */
     72        errno_t (*cursor_set_visible)(void *, bool);
    6673} gfx_context_ops_t;
    6774
Note: See TracChangeset for help on using the changeset viewer.