Searched refs:vinfo (Results 1 - 6 of 6) sorted by relevance

/hardware/qcom/display/msm8974/liboverlay/
H A DoverlayWriteback.cpp115 fb_var_screeninfo vinfo; local
116 memset(&vinfo, 0, sizeof(fb_var_screeninfo));
117 if(!mdp_wrapper::getVScreenInfo(mFd.getFD(), vinfo)) {
121 vinfo.xres = xres;
122 vinfo.yres = yres;
123 vinfo.xres_virtual = xres;
124 vinfo.yres_virtual = yres;
125 vinfo.xoffset = 0;
126 vinfo.yoffset = 0;
127 if(!mdp_wrapper::setVScreenInfo(mFd.getFD(), vinfo)) {
[all...]
H A DmdpWrapper.h54 bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo);
57 bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo);
114 void dump(const char* const s, const fb_var_screeninfo& vinfo);
128 inline bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
130 if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) < 0) {
138 inline bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
140 if (ioctl(fd, FBIOPUT_VSCREENINFO, &vinfo) < 0) {
352 inline void dump(const char* const s, const fb_var_screeninfo& vinfo) { argument
354 s, vinfo.xres, vinfo
[all...]
/hardware/qcom/display/msm8960/liboverlay/
H A DmdpWrapper.h52 bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo);
55 bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo);
97 void dump(const char* const s, const fb_var_screeninfo& vinfo);
110 inline bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
111 if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) < 0) {
119 inline bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
120 if (ioctl(fd, FBIOPUT_VSCREENINFO, &vinfo) < 0) {
264 inline void dump(const char* const s, const fb_var_screeninfo& vinfo) { argument
266 s, vinfo.xres, vinfo
[all...]
/hardware/qcom/display/msm8x26/liboverlay/
H A DmdpWrapper.h52 bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo);
55 bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo);
97 void dump(const char* const s, const fb_var_screeninfo& vinfo);
110 inline bool getVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
111 if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) < 0) {
119 inline bool setVScreenInfo(int fd, fb_var_screeninfo& vinfo) { argument
120 if (ioctl(fd, FBIOPUT_VSCREENINFO, &vinfo) < 0) {
264 inline void dump(const char* const s, const fb_var_screeninfo& vinfo) { argument
266 s, vinfo.xres, vinfo
[all...]
/hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
H A Domx_vdec_test.cpp239 static struct fb_var_screeninfo vinfo; variable in typeref:struct:fb_var_screeninfo
3325 vinfo.yoffset = 0;
3328 for (i=0; i < vinfo.xres * vinfo.yres; i++)
3337 if (ioctl(fb_fd, FBIOPAN_DISPLAY, &vinfo) < 0)
3367 if(width >= vinfo.xres)
3370 overlayp->dst_rect.w = vinfo.xres;
3374 overlayp->dst_rect.x = (vinfo.xres - width)/2;
3378 if(height >= vinfo.yres)
3382 if (overlayp->dst_rect.h < vinfo
[all...]
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
H A Domx_vdec_test.cpp329 static struct fb_var_screeninfo vinfo; variable in typeref:struct:fb_var_screeninfo
3524 vinfo.yoffset = 0;
3527 for (i=0; i < vinfo.xres * vinfo.yres; i++) {
3535 if (ioctl(fb_fd, FBIOPAN_DISPLAY, &vinfo) < 0) {
3579 if (width >= vinfo.xres) {
3581 overlayp->dst_rect.w = vinfo.xres;
3583 overlayp->dst_rect.x = (vinfo.xres - width)/2;
3587 if (height >= vinfo.yres) {
3590 if (overlayp->dst_rect.h < vinfo
[all...]

Completed in 402 milliseconds