Searched refs:fbinfo (Results 1 - 2 of 2) sorted by path

/system/core/adb/
H A Dframebuffer_service.c36 /* This version number defines the format of the fbinfo struct.
39 struct fbinfo { struct
57 struct fbinfo fbinfo; local
86 fbinfo.version = DDMS_RAWIMAGE_VERSION;
90 fbinfo.bpp = 32;
91 fbinfo.size = w * h * 4;
92 fbinfo.width = w;
93 fbinfo.height = h;
94 fbinfo
[all...]
/system/core/toolbox/
H A Drotatefb.c20 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
[all...]

Completed in 1307 milliseconds