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:
authorDaniel Dunbar <daniel@zuster.org>2004-05-04 23:10:55 +0400
committerDaniel Dunbar <daniel@zuster.org>2004-05-04 23:10:55 +0400
commit400cd96effacc007b4b445cffc34884d718dafed (patch)
tree84c75bc9f06a2df84ffe28587c9b7e6e2b330382 /source/blender/src/cursors.c
parent2620ee4dc2ad101f5581b947ef861c4526402639 (diff)
- ugh, do not break open an abstract data type just to add one single
function, especially when you are introducing extra dependencies (GHOST) on files that should not have them.
Diffstat (limited to 'source/blender/src/cursors.c')
-rw-r--r--source/blender/src/cursors.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/source/blender/src/cursors.c b/source/blender/src/cursors.c
index bc720b28961..f254156c307 100644
--- a/source/blender/src/cursors.c
+++ b/source/blender/src/cursors.c
@@ -48,7 +48,6 @@
#include "BIF_graphics.h"
#include "BIF_screen.h"
-#include "GHOST_C-api.h"
#include "winlay.h"
@@ -99,7 +98,6 @@ void SetBlenderCursor(short curs){
win=winlay_get_active_window();
if (win==NULL) return; /* Can't set custom cursor before Window init */
- if (win->ghostwin==NULL) return;
LastCursor=CurrentCursor;
CurrentCursor=curs;
@@ -110,23 +108,10 @@ void SetBlenderCursor(short curs){
set_cursor(CURSOR_STD);
}
else if ( (U.curssize==0) || (BlenderCursor[curs]->big_bm == NULL) ) {
- /*printf("setting small cursor\n");*/
- GHOST_SetCustomCursorShapeEx(win->ghostwin,
- BlenderCursor[curs]->small_bm, BlenderCursor[curs]->small_mask,
- BlenderCursor[curs]->small_sizex,BlenderCursor[curs]->small_sizey,
- BlenderCursor[curs]->small_hotx,BlenderCursor[curs]->small_hoty,
- BlenderCursor[curs]->fg_color, BlenderCursor[curs]->bg_color
- );
+ window_set_custom_cursor_ex(win, BlenderCursor[curs], 0);
}
else {
- /*printf("setting big cursor\n");*/
- GHOST_SetCustomCursorShapeEx(win->ghostwin,
- BlenderCursor[curs]->big_bm, BlenderCursor[curs]->big_mask,
- BlenderCursor[curs]->big_sizex,BlenderCursor[curs]->big_sizey,
- BlenderCursor[curs]->big_hotx,BlenderCursor[curs]->big_hoty,
- BlenderCursor[curs]->fg_color, BlenderCursor[curs]->bg_color
- );
-
+ window_set_custom_cursor_ex(win, BlenderCursor[curs], 1);
}
}