mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
st/dri: enable DRIimage modifier queries
return the modifier selected by the driver when creating this image.
v2: since we can use winsys_handle->modifier to serve these, remove
DRIimage->modifier from v1.
use DRM_API_HANDLE_TYPE_KMS instead of DRM_API_HANDLE_TYPE_FD to avoid
ownership transfer. (Lucas)
Suggested-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: Varad Gautam <varad.gautam@collabora.com>
Cc: Lucas Stach <l.stach@pengutronix.de>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
This commit is contained in:
parent
3f8513172f
commit
d33fe8b84e
1 changed files with 12 additions and 0 deletions
|
|
@ -1088,6 +1088,18 @@ dri2_query_image(__DRIimage *image, int attrib, int *value)
|
||||||
case __DRI_IMAGE_ATTRIB_NUM_PLANES:
|
case __DRI_IMAGE_ATTRIB_NUM_PLANES:
|
||||||
*value = 1;
|
*value = 1;
|
||||||
return GL_TRUE;
|
return GL_TRUE;
|
||||||
|
case __DRI_IMAGE_ATTRIB_MODIFIER_UPPER:
|
||||||
|
whandle.type = DRM_API_HANDLE_TYPE_KMS;
|
||||||
|
image->texture->screen->resource_get_handle(image->texture->screen,
|
||||||
|
NULL, image->texture, &whandle, usage);
|
||||||
|
*value = (whandle.modifier >> 32) & 0xffffffff;
|
||||||
|
return GL_TRUE;
|
||||||
|
case __DRI_IMAGE_ATTRIB_MODIFIER_LOWER:
|
||||||
|
whandle.type = DRM_API_HANDLE_TYPE_KMS;
|
||||||
|
image->texture->screen->resource_get_handle(image->texture->screen,
|
||||||
|
NULL, image->texture, &whandle, usage);
|
||||||
|
*value = whandle.modifier & 0xffffffff;
|
||||||
|
return GL_TRUE;
|
||||||
default:
|
default:
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue