OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fbinfo
(Results
1 - 5
of
5
) sorted by null
/system/core/adb/
framebuffer_service.c
36
/* 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
.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.15/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 105 milliseconds