Lines Matching refs:m
75 private_module_t* m = reinterpret_cast<private_module_t*>( in fb_setSwapInterval() local
80 m->swapInterval = interval; in fb_setSwapInterval()
86 private_module_t* m = in fb_post() local
90 const size_t offset = hnd->base - m->framebuffer->base; in fb_post()
91 m->info.activate = FB_ACTIVATE_VBL; in fb_post()
92 m->info.yoffset = offset / m->finfo.line_length; in fb_post()
93 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) { in fb_post()
378 private_module_t* m = (private_module_t*)module; in fb_device_open() local
379 status = mapFrameBuffer(m); in fb_device_open()
381 int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3); in fb_device_open()
383 const_cast<uint32_t&>(dev->device.width) = m->info.xres; in fb_device_open()
384 const_cast<uint32_t&>(dev->device.height) = m->info.yres; in fb_device_open()
386 const_cast<int&>(dev->device.format) = m->fbFormat; in fb_device_open()
387 const_cast<float&>(dev->device.xdpi) = m->xdpi; in fb_device_open()
388 const_cast<float&>(dev->device.ydpi) = m->ydpi; in fb_device_open()
389 const_cast<float&>(dev->device.fps) = m->fps; in fb_device_open()
394 const_cast<int&>(dev->device.numFramebuffers) = m->numBuffers; in fb_device_open()