mode = igt_output_get_mode(output);
igt_create_color_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
- false, /* tiled */
+ I915_TILING_NONE,
0.0, 0.0, 0.0,
&data->primary_fb);
uint32_t fb_id;
fb_id = igt_create_fb(data->drm_fd, cur_w, cur_h,
- DRM_FORMAT_ARGB8888, false,
+ DRM_FORMAT_ARGB8888, I915_TILING_NONE,
&data->fb);
igt_assert(fb_id);
* smaller ones to see that the size is applied correctly
*/
fb_id = igt_create_fb(data->drm_fd, cursor_max_size, cursor_max_size,
- DRM_FORMAT_ARGB8888, false, &data->fb);
+ DRM_FORMAT_ARGB8888, I915_TILING_NONE, &data->fb);
igt_assert(fb_id);
/* Use a solid white rectangle as the cursor */