radv: drop radv_cmd_dirty_mask_t typedef
I don't think we will need a 64-bit unsigned integer for the dirty flags in the future, and there is still 20 bits left. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
@@ -1019,7 +1019,7 @@ static void
|
||||
radv_pipeline_init_dynamic_state(struct radv_pipeline *pipeline,
|
||||
const VkGraphicsPipelineCreateInfo *pCreateInfo)
|
||||
{
|
||||
radv_cmd_dirty_mask_t states = RADV_CMD_DIRTY_DYNAMIC_ALL;
|
||||
uint32_t states = RADV_CMD_DIRTY_DYNAMIC_ALL;
|
||||
RADV_FROM_HANDLE(radv_render_pass, pass, pCreateInfo->renderPass);
|
||||
struct radv_subpass *subpass = &pass->subpasses[pCreateInfo->subpass];
|
||||
|
||||
|
@@ -702,7 +702,6 @@ enum radv_cmd_dirty_bits {
|
||||
RADV_CMD_DIRTY_INDEX_BUFFER = 1 << 10,
|
||||
RADV_CMD_DIRTY_FRAMEBUFFER = 1 << 11,
|
||||
};
|
||||
typedef uint32_t radv_cmd_dirty_mask_t;
|
||||
|
||||
enum radv_cmd_flush_bits {
|
||||
RADV_CMD_FLAG_INV_ICACHE = 1 << 0,
|
||||
@@ -817,7 +816,7 @@ struct radv_cmd_state {
|
||||
|
||||
bool push_descriptors_dirty;
|
||||
bool predicating;
|
||||
radv_cmd_dirty_mask_t dirty;
|
||||
uint32_t dirty;
|
||||
|
||||
struct radv_pipeline * pipeline;
|
||||
struct radv_pipeline * emitted_pipeline;
|
||||
|
Reference in New Issue
Block a user