mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
i965: Allow import/export of ARGB1555 images
To my knowledge, this fixes no tests. I simply wrote the patch for completeness as a follow-up to the previous two patches. Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
parent
f3739810e3
commit
e2d69d5e2d
1 changed files with 3 additions and 0 deletions
|
|
@ -230,6 +230,9 @@ static struct intel_image_format intel_image_formats[] = {
|
|||
{ __DRI_IMAGE_FOURCC_XBGR8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
|
||||
{ { 0, 0, 0, __DRI_IMAGE_FORMAT_XBGR8888, 4 }, } },
|
||||
|
||||
{ __DRI_IMAGE_FOURCC_ARGB1555, __DRI_IMAGE_COMPONENTS_RGBA, 1,
|
||||
{ { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB1555, 2 } } },
|
||||
|
||||
{ __DRI_IMAGE_FOURCC_RGB565, __DRI_IMAGE_COMPONENTS_RGB, 1,
|
||||
{ { 0, 0, 0, __DRI_IMAGE_FORMAT_RGB565, 2 } } },
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue