Home | History | Annotate | Download | only in bwindow

Lines Matching refs:bits

33 /* Convert bits to padded bytes */
34 #define PADDED_BITS(bits) ((bits+7)/8)
38 char *bits;
65 cursor->bits = (char *)SDL_malloc(4+2*((allowed_x/8)*allowed_y));
66 if ( cursor->bits == NULL ) {
71 cursor->bits[0] = allowed_y; /* Size of the cursor */
72 cursor->bits[1] = 1; /* Bit depth of cursor */
73 cursor->bits[2] = hot_y;
74 cursor->bits[3] = hot_x;
75 cptr = &cursor->bits[4];
112 be_app->SetCursor(SDL_BlankCursor->bits);
115 be_app->SetCursor(cursor->bits);
124 SDL_free(cursor->bits);