HomeSort by relevance Sort by last modified time
    Searched defs:fbinfo (Results 1 - 3 of 3) sorted by null

  /system/core/toolbox/
rotatefb.c 20 struct fb_var_screeninfo fbinfo; local
49 res = ioctl(fd, FBIOGET_VSCREENINFO, &fbinfo);
51 fprintf(stderr, "failed to get fbinfo: %s\n", strerror(errno));
54 if((fbinfo.rotate ^ rotation) & 1) {
55 unsigned int xres = fbinfo.yres;
56 fbinfo.yres = fbinfo.xres;
57 fbinfo.xres = xres;
58 fbinfo.xres_virtual = fbinfo.xres
    [all...]
  /system/core/adb/
framebuffer_service.c 33 /* This version number defines the format of the fbinfo struct.
36 struct fbinfo { struct
54 struct fbinfo fbinfo; local
83 fbinfo.version = DDMS_RAWIMAGE_VERSION;
87 fbinfo.bpp = 32;
88 fbinfo.size = w * h * 4;
89 fbinfo.width = w;
90 fbinfo.height = h;
91 fbinfo.red_offset = 0
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxvideo.h 72 GR_WINDOW_FB_INFO fbinfo; member in struct:SDL_PrivateVideoData
92 #define fbinfo (this -> hidden -> fbinfo) macro

Completed in 4159 milliseconds