Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-16 20:45:57 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-16 20:58:26 +0300
commit087a4898676d744d4aaa46a59b47186825495820 (patch)
treea3ec2cbd2060a567f87dcd6790f507e7641187a8 /source/blender/windowmanager/wm_cursors.h
parent5767dcbe60c07cd9ef113e2f54eaad6981a47bce (diff)
Cleanup: simplify GHOST cursor API, no functional changes
Diffstat (limited to 'source/blender/windowmanager/wm_cursors.h')
-rw-r--r--source/blender/windowmanager/wm_cursors.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/source/blender/windowmanager/wm_cursors.h b/source/blender/windowmanager/wm_cursors.h
index 46fdb4baa5b..6192b7c228e 100644
--- a/source/blender/windowmanager/wm_cursors.h
+++ b/source/blender/windowmanager/wm_cursors.h
@@ -61,8 +61,7 @@ typedef struct BCursor {
char big_hotx;
char big_hoty;
- char fg_color;
- char bg_color;
+ bool can_invert_color;
} BCursor;
@@ -97,15 +96,6 @@ enum {
BC_NUMCURSORS,
};
-enum {
- BC_BLACK = 0,
- BC_WHITE,
- BC_RED,
- BC_BLUE,
- BC_GREEN,
- BC_YELLOW,
-};
-
struct wmEvent;
struct wmWindow;