Module: Mesa Branch: master Commit: 7365626d7880e73381e26a533b1461258ffe2ff0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7365626d7880e73381e26a533b1461258ffe2ff0
Author: Dave Airlie <[email protected]> Date: Sun Nov 5 23:40:05 2017 +0000 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]> --- src/amd/vulkan/radv_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 51bdde2032..15cd5eee7d 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
