summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Ciccani <klan@users.sourceforge.net>2006-06-09 15:19:05 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-07-11 20:03:34 +0100
commitd2affc62d3c61fabf7008297a6380dc3719a5051 (patch)
tree0680a23bac181a59e1bd40e12cc1cdfb9870575f
parent918caa578eada25ab30b92fd5c6cd81edcb64196 (diff)
downloadglut-d2affc62d3c61fabf7008297a6380dc3719a5051.tar.gz
Enable setting invible cursors.
-rw-r--r--src/glut/directfb/cursor.c62
1 files changed, 35 insertions, 27 deletions
diff --git a/src/glut/directfb/cursor.c b/src/glut/directfb/cursor.c
index 905fa5e..aca3fcc 100644
--- a/src/glut/directfb/cursor.c
+++ b/src/glut/directfb/cursor.c
@@ -32,10 +32,6 @@ glutSetCursor( int type )
const unsigned char *cursor;
DFBSurfaceDescription dsc;
IDirectFBSurface *shape;
- __u8 *src, *msk;
- void *dst;
- int pitch;
- int x, y;
if (!g_current || !g_current->window)
return;
@@ -104,44 +100,56 @@ glutSetCursor( int type )
case GLUT_CURSOR_BOTTOM_LEFT_CORNER:
cursor = &cur_bottom_left[0];
break;
+ case GLUT_CURSOR_NONE:
+ cursor = NULL;
+ break;
default:
cursor = &cur_right_arrow[0];
break;
}
dsc.flags = DSDESC_WIDTH | DSDESC_HEIGHT | DSDESC_PIXELFORMAT;
- dsc.width = cursor[0];
- dsc.height = cursor[0];
+ dsc.width =
+ dsc.height = cursor ? cursor[0] : 8;
dsc.pixelformat = DSPF_ARGB;
if (dfb->CreateSurface( dfb, &dsc, &shape ))
return;
+
+ if (cursor) {
+ __u8 *src = (__u8*) &cursor[3];
+ __u8 *msk = src + cursor[0]*cursor[0]/8;
+ void *dst;
+ int pitch;
+ int x, y;
- if (shape->Lock( shape, DSLF_WRITE, &dst, &pitch )) {
- shape->Release( shape );
- return;
- }
-
- src = (__u8*) &cursor[3];
- msk = src + cursor[0]*cursor[0]/8;
+ if (shape->Lock( shape, DSLF_WRITE, &dst, &pitch )) {
+ shape->Release( shape );
+ return;
+ }
- for (y = 0; y < cursor[0]; y++) {
- for (x = 0; x < cursor[0]; x++) {
- int p = x & 7;
+ for (y = 0; y < cursor[0]; y++) {
+ for (x = 0; x < cursor[0]; x++) {
+ ((__u32*)dst)[x] =
+ ((src[x>>3] & (0x80 >> (x&7))) ? 0 : 0x00ffffff) |
+ ((msk[x>>3] & (0x80 >> (x&7))) ? 0xff000000 : 0);
+ }
- ((__u32*)dst)[x] = ((src[x>>3] & (0x80 >> p)) ? 0 : 0x00ffffff) |
- ((msk[x>>3] & (0x80 >> p)) ? 0xff000000 : 0);
+ dst += pitch;
+ src += cursor[0]/8;
+ msk += cursor[0]/8;
}
-
- dst += pitch;
- src += 2;
- msk += 2;
- }
- shape->Unlock( shape );
-
- g_current->window->SetCursorShape( g_current->window,
- shape, cursor[1], cursor[2] );
+ shape->Unlock( shape );
+ }
+ else {
+ /* Invisible cursor */
+ shape->Clear( shape, 0, 0, 0, 0 );
+ }
+
+ g_current->window->SetCursorShape( g_current->window, shape,
+ cursor ? cursor[1] : 0,
+ cursor ? cursor[2] : 0 );
g_current->cursor = type;
shape->Release( shape );