mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
r600: Fix texture buffer offset alignment
It seems that this has to be 4 (radeonsi also sets this value to 4) Fixes deqp-gles31: functional.texture.texture_buffer.modify.bufferdata.offset_1_alignments functional.texture.texture_buffer.modify.bufferdata.offset_7_alignments Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9877>
This commit is contained in:
parent
a5d5cbdf08
commit
2440488677
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
|
|||
return 256;
|
||||
|
||||
case PIPE_CAP_TEXTURE_BUFFER_OFFSET_ALIGNMENT:
|
||||
return 1;
|
||||
return 4;
|
||||
|
||||
case PIPE_CAP_GLSL_FEATURE_LEVEL:
|
||||
if (family >= CHIP_CEDAR)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue