Lines Matching refs:creq
255 struct drm_mode_create_dumb creq;
263 memset(&creq, 0, sizeof(creq));
264 creq.width = 1920;
265 creq.height = 1080;
266 creq.bpp = 32;
267 ret = drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &creq);
272 /* creq.pitch, creq.handle and creq.size are filled by this ioctl with
276 ret = drmModeAddFB(fd, 1920, 1080, 24, 32, creq.pitch, creq.handle, &fb);
285 mreq.handle = creq.handle;
294 map = mmap(0, creq.size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, mreq.offset);
301 memset(map, 0, creq.size);