Lines Matching full:creq
357 struct drm_mode_create_dumb creq;
365 memset(&creq, 0, sizeof(creq));
366 creq.width = 1920;
367 creq.height = 1080;
368 creq.bpp = 32;
369 ret = drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &creq);
374 /* creq.pitch, creq.handle and creq.size are filled by this ioctl with
378 ret = drmModeAddFB(fd, 1920, 1080, 24, 32, creq.pitch, creq.handle, &fb);
387 mreq.handle = creq.handle;
396 map = mmap(0, creq.size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, mreq.offset);
403 memset(map, 0, creq.size);