v1 of the patch got pushed, insted of the v2 that I had reviewed.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
{
struct intel_screen *intelScreen = screen->driverPrivate;
struct intel_image_format *f;
- uint32_t mask_x, mask_y;
__DRIimage *image;
int i, index;
if (f->nplanes == 1) {
image->offset = image->offsets[0];
- intel_region_get_tile_masks(image->region, &mask_x, &mask_y, false);
- if (image->offset & mask_x)
+ if (image->region->tiling != I915_TILING_NONE && (image->offset & 0xfff))
_mesa_warning(NULL,
"intel_create_image_from_fds: offset not on tile boundary");
}