mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
v3d: Fix the size of the packed attribute state.
Fixes segfaults in dEQP-GLES3.functional.vertex_array_objects.all_attributes.
This commit is contained in:
parent
7d8fe50af3
commit
0eef4d7f8f
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ struct v3d_vertex_stateobj {
|
|||
struct pipe_vertex_element pipe[VC5_MAX_ATTRIBUTES];
|
||||
unsigned num_elements;
|
||||
|
||||
uint8_t attrs[12 * VC5_MAX_ATTRIBUTES];
|
||||
uint8_t attrs[16 * VC5_MAX_ATTRIBUTES];
|
||||
struct v3d_bo *default_attribute_values;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue