/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...] |
/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...] |
/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);
|