Lines Matching refs:m
77 private_module_t* m = reinterpret_cast<private_module_t*>( in fb_setSwapInterval() local
82 m->swapInterval = interval; in fb_setSwapInterval()
88 private_module_t* m = in fb_post() local
92 const size_t offset = hnd->base - m->framebuffer->base; in fb_post()
93 m->info.activate = FB_ACTIVATE_VBL; in fb_post()
94 m->info.yoffset = (int)(offset / m->finfo.line_length); in fb_post()
95 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) { in fb_post()
407 private_module_t* m = (private_module_t*)module; in fb_device_open() local
408 status = mapFrameBuffer(m); in fb_device_open()
410 int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3); in fb_device_open()
412 const_cast<uint32_t&>(dev->device.width) = m->info.xres; in fb_device_open()
413 const_cast<uint32_t&>(dev->device.height) = m->info.yres; in fb_device_open()
415 const_cast<int&>(dev->device.format) = m->fbFormat; in fb_device_open()
416 const_cast<float&>(dev->device.xdpi) = m->xdpi; in fb_device_open()
417 const_cast<float&>(dev->device.ydpi) = m->ydpi; in fb_device_open()
418 const_cast<float&>(dev->device.fps) = m->fps; in fb_device_open()
423 const_cast<int&>(dev->device.numFramebuffers) = m->numBuffers; in fb_device_open()