mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 22:18:13 +02:00
panfrost: Don't advertise OES_copy_image
We don't support it yet. Fixes:61d3ae6e0b("panfrost: Initial stub for Panfrost driver") Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9164> (cherry picked from commit5eff64e3a3)
This commit is contained in:
parent
6864f88534
commit
5f4d7d99d7
2 changed files with 6 additions and 2 deletions
|
|
@ -2551,7 +2551,7 @@
|
|||
"description": "panfrost: Don't advertise OES_copy_image",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "61d3ae6e0bde93c5601278d1a60c44be655a7cb5"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -155,13 +155,17 @@ panfrost_get_param(struct pipe_screen *screen, enum pipe_cap param)
|
|||
case PIPE_CAP_UMA:
|
||||
case PIPE_CAP_TEXTURE_FLOAT_LINEAR:
|
||||
case PIPE_CAP_TEXTURE_HALF_FLOAT_LINEAR:
|
||||
case PIPE_CAP_COPY_BETWEEN_COMPRESSED_AND_PLAIN_FORMATS:
|
||||
case PIPE_CAP_TGSI_ARRAY_COMPONENTS:
|
||||
case PIPE_CAP_CS_DERIVED_SYSTEM_VALUES_SUPPORTED:
|
||||
case PIPE_CAP_TEXTURE_BUFFER_OBJECTS:
|
||||
case PIPE_CAP_TEXTURE_BUFFER_SAMPLER:
|
||||
return 1;
|
||||
|
||||
/* We need this for OES_copy_image, but currently there are some awful
|
||||
* interactions with AFBC that need to be worked out. */
|
||||
case PIPE_CAP_COPY_BETWEEN_COMPRESSED_AND_PLAIN_FORMATS:
|
||||
return 0;
|
||||
|
||||
case PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS:
|
||||
return 4;
|
||||
case PIPE_CAP_MAX_STREAM_OUTPUT_SEPARATE_COMPONENTS:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue