HomeSort by relevance Sort by last modified time
    Searched refs:fbinfo (Results 1 - 5 of 5) 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
58 struct fbinfo fbinfo; local
69 fbinfo.version = DDMS_RAWIMAGE_VERSION;
70 fbinfo.bpp = vinfo.bits_per_pixel;
71 fbinfo.size = vinfo.xres * vinfo.yres * bytespp;
72 fbinfo.width = vinfo.xres;
73 fbinfo.height = vinfo.yres;
74 fbinfo.red_offset = vinfo.red.offset
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nximage.c 50 dest = fbinfo.winpixels + (((y+OffsetY) * fbinfo.pitch) +
51 ((x+OffsetX) * fbinfo.bytespp));
53 dest = fbinfo.winpixels + ((y * fbinfo.pitch) + (x * fbinfo.bytespp));
54 destinc = fbinfo.pitch;
176 GrGetWindowFBInfo(FSwindow, &fbinfo);
178 GrGetWindowFBInfo(SDL_Window, &fbinfo);
200 GrGetWindowFBInfo(SDL_Window, &fbinfo);
    [all...]
SDL_nxvideo.h 72 GR_WINDOW_FB_INFO fbinfo; member in struct:SDL_PrivateVideoData
92 #define fbinfo (this -> hidden -> fbinfo) macro
SDL_nxevents.c 359 GrGetWindowFBInfo(FSwindow, &fbinfo);
361 GrGetWindowFBInfo(SDL_Window, &fbinfo);

Completed in 102 milliseconds