mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
freedreno/a5xx: add missing L8A8_UNORM format to support TBOs
Fixes arb_texture_buffer_object-formats test. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13906>
This commit is contained in:
parent
c87967bf17
commit
43f94ee9f1
2 changed files with 1 additions and 4 deletions
|
|
@ -318,10 +318,6 @@ spec@arb_occlusion_query@occlusion_query_order,Fail
|
|||
spec@arb_point_sprite@arb_point_sprite-interactions 1.0,Fail
|
||||
spec@arb_separate_shader_objects@400 combinations by location,Fail
|
||||
spec@arb_separate_shader_objects@400 combinations by name,Fail
|
||||
spec@arb_texture_buffer_object@formats (fs- arb),Fail
|
||||
spec@arb_texture_buffer_object@formats (fs- arb)@GL_LUMINANCE8_ALPHA8,Fail
|
||||
spec@arb_texture_buffer_object@formats (vs- arb),Fail
|
||||
spec@arb_texture_buffer_object@formats (vs- arb)@GL_LUMINANCE8_ALPHA8,Fail
|
||||
spec@arb_texture_rectangle@1-1-linear-texture,Fail
|
||||
spec@arb_timer_query@query gl_timestamp,Fail
|
||||
spec@arb_timer_query@timestamp-get,Fail
|
||||
|
|
|
|||
|
|
@ -130,6 +130,7 @@ static struct fd5_format formats[PIPE_FORMAT_COUNT] = {
|
|||
|
||||
_T(L8A8_UINT, 8_8_UINT, NONE, WZYX),
|
||||
_T(L8A8_SINT, 8_8_SINT, NONE, WZYX),
|
||||
_T(L8A8_UNORM, 8_8_UNORM, NONE, WZYX),
|
||||
|
||||
_T(B5G6R5_UNORM, 5_6_5_UNORM, R5G6B5_UNORM, WXYZ),
|
||||
_T(B5G5R5A1_UNORM, 5_5_5_1_UNORM, R5G5B5A1_UNORM, WXYZ),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue