mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 01:00:10 +01:00
radv: reduce meta_saved_state struct size.
904->896. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
42d50c779b
commit
f45e768413
1 changed files with 3 additions and 4 deletions
|
|
@ -36,16 +36,15 @@ extern "C" {
|
|||
|
||||
struct radv_meta_saved_state {
|
||||
bool vertex_saved;
|
||||
struct radv_vertex_binding old_vertex_bindings[RADV_META_VERTEX_BINDING_COUNT];
|
||||
struct radv_descriptor_set *old_descriptor_set0;
|
||||
struct radv_pipeline *old_pipeline;
|
||||
|
||||
/**
|
||||
* Bitmask of (1 << VK_DYNAMIC_STATE_*). Defines the set of saved dynamic
|
||||
* state.
|
||||
*/
|
||||
uint32_t dynamic_mask;
|
||||
struct radv_dynamic_state dynamic;
|
||||
struct radv_vertex_binding old_vertex_bindings[RADV_META_VERTEX_BINDING_COUNT];
|
||||
struct radv_descriptor_set *old_descriptor_set0;
|
||||
struct radv_pipeline *old_pipeline;
|
||||
|
||||
char push_constants[128];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue