mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-30 07:28:20 +02:00
panfrost: Set STRIDE_4BYTE_ALIGNED_ONLY
It isn't clear to me why, but this breaks in some cases (such as some dEQP cases where the blob does a translate too). This reverts commit9f2997dad0. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Cc: mesa-stable Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6326> (cherry picked from commite03622e50f)
This commit is contained in:
parent
a9024558ba
commit
2891ddb996
3 changed files with 5 additions and 2 deletions
|
|
@ -42,4 +42,3 @@ dEQP-GLES3.functional.fbo.msaa.4_samples.stencil_index8
|
|||
dEQP-GLES3.functional.fence_sync.client_wait_sync_finish
|
||||
dEQP-GLES3.functional.draw.random.156
|
||||
dEQP-GLES3.functional.draw.random.208
|
||||
dEQP-GLES3.functional.vertex_arrays.single_attribute.strides.int2_10_10_10.user_ptr_stride17_components4_quads256
|
||||
|
|
|
|||
|
|
@ -652,7 +652,7 @@
|
|||
"description": "panfrost: Set STRIDE_4BYTE_ALIGNED_ONLY",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -191,6 +191,10 @@ panfrost_get_param(struct pipe_screen *screen, enum pipe_cap param)
|
|||
case PIPE_CAP_CONDITIONAL_RENDER:
|
||||
return is_gl3;
|
||||
|
||||
/* TODO: Where does this req come from in practice? */
|
||||
case PIPE_CAP_VERTEX_BUFFER_STRIDE_4BYTE_ALIGNED_ONLY:
|
||||
return 1;
|
||||
|
||||
case PIPE_CAP_MAX_TEXTURE_2D_SIZE:
|
||||
return 4096;
|
||||
case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue