mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-08-21 20:41:34 +00:00
Document REGION_TEST_* bitmasks
Acked-by: Frediano Ziglio <fziglio@redhat.com> Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
parent
30e8237934
commit
c9ecd0e29e
@ -29,8 +29,11 @@ SPICE_BEGIN_DECLS
|
||||
|
||||
typedef pixman_region32_t QRegion;
|
||||
|
||||
/* the left region is not contained entirely within the right region */
|
||||
#define REGION_TEST_LEFT_EXCLUSIVE (1 << 0)
|
||||
/* the right region is not contained entirely within the left region */
|
||||
#define REGION_TEST_RIGHT_EXCLUSIVE (1 << 1)
|
||||
/* the regions overlap */
|
||||
#define REGION_TEST_SHARED (1 << 2)
|
||||
#define REGION_TEST_ALL \
|
||||
(REGION_TEST_LEFT_EXCLUSIVE | REGION_TEST_RIGHT_EXCLUSIVE | REGION_TEST_SHARED)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user