diff options
author | Dave Airlie <[email protected]> | 2017-11-05 23:40:05 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-11-06 01:10:53 +0000 |
commit | 7365626d7880e73381e26a533b1461258ffe2ff0 (patch) | |
tree | f733c888ac5ee8e0e9207ba00e7ff6b39cab127b /src/amd | |
parent | f0ae06a13c1a60f58de77401f705eaf620b5b822 (diff) |
radv: reorder cmd_state to remove a hole.
This just removes a hole in the cmd_state and packs some bools
together.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 51bdde20323..15cd5eee7df 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -810,9 +810,9 @@ struct radv_attachment_state { struct radv_cmd_state { bool vb_dirty; - radv_cmd_dirty_mask_t dirty; bool push_descriptors_dirty; bool predicating; + radv_cmd_dirty_mask_t dirty; struct radv_pipeline * pipeline; struct radv_pipeline * emitted_pipeline; |