Home
last modified time | relevance | path

Searched refs:fbcursor (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/os-support/bus/
H A DSbus.c686 struct fbcursor fbcursor; in xf86SbusHideOsHwCursor() local
689 memset(&fbcursor, 0, sizeof(fbcursor)); in xf86SbusHideOsHwCursor()
691 fbcursor.cmap.count = 2; in xf86SbusHideOsHwCursor()
692 fbcursor.cmap.red = zeros; in xf86SbusHideOsHwCursor()
693 fbcursor.cmap.green = zeros; in xf86SbusHideOsHwCursor()
694 fbcursor.cmap.blue = zeros; in xf86SbusHideOsHwCursor()
695 fbcursor.image = (char *) zeros; in xf86SbusHideOsHwCursor()
696 fbcursor.mask = (char *) zeros; in xf86SbusHideOsHwCursor()
697 fbcursor.size.x = 32; in xf86SbusHideOsHwCursor()
698 fbcursor.size.y = 1; in xf86SbusHideOsHwCursor()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/sm750fb/
H A Dsm750.c105 static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor) in lynxfb_ops_cursor() argument
115 if (fbcursor->image.width > cursor->maxW || in lynxfb_ops_cursor()
116 fbcursor->image.height > cursor->maxH || in lynxfb_ops_cursor()
117 fbcursor->image.depth > 1) { in lynxfb_ops_cursor()
122 if (fbcursor->set & FB_CUR_SETSIZE) in lynxfb_ops_cursor()
124 fbcursor->image.width, in lynxfb_ops_cursor()
125 fbcursor->image.height); in lynxfb_ops_cursor()
127 if (fbcursor->set & FB_CUR_SETPOS) in lynxfb_ops_cursor()
129 fbcursor->image.dx - info->var.xoffset, in lynxfb_ops_cursor()
130 fbcursor->image.dy - info->var.yoffset); in lynxfb_ops_cursor()
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/include/uapi/asm/
H A Dfbio.h97 struct fbcursor { struct
109 #define FBIOSCURSOR _IOW('F', 24, struct fbcursor) argument
110 #define FBIOGCURSOR _IOWR('F', 25, struct fbcursor)
/OK3568_Linux_fs/kernel/arch/m68k/include/asm/
H A Dfbio.h100 struct fbcursor { struct
112 #define FBIOSCURSOR _IOW('F', 24, struct fbcursor) argument
113 #define FBIOGCURSOR _IOWR('F', 25, struct fbcursor)
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dsbuslib.c219 struct fbcursor __user *p = compat_alloc_user_space(sizeof(*p)); in fbiogscursor()