From f228e7ed2d3fcae392b188d949cb878cb27fb4e3 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 10 May 2024 12:25:56 +0200 Subject: [PATCH] radv: remove gfx10_emit_ge_pc_alloc() Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_pipeline_graphics.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/amd/vulkan/radv_pipeline_graphics.c b/src/amd/vulkan/radv_pipeline_graphics.c index 5150407ad83..baa54337458 100644 --- a/src/amd/vulkan/radv_pipeline_graphics.c +++ b/src/amd/vulkan/radv_pipeline_graphics.c @@ -1060,13 +1060,6 @@ radv_pipeline_init_dynamic_state(const struct radv_device *device, struct radv_g pipeline->dynamic_state.mask = states; } -static void -gfx10_emit_ge_pc_alloc(struct radeon_cmdbuf *cs, uint32_t oversub_pc_lines) -{ - radeon_set_uconfig_reg(cs, R_030980_GE_PC_ALLOC, - S_030980_OVERSUB_EN(oversub_pc_lines > 0) | S_030980_NUM_PC_LINES(oversub_pc_lines - 1)); -} - struct radv_shader * radv_get_shader(struct radv_shader *const *shaders, gl_shader_stage stage) {