r600: remove unused code

With the cleanup in 337dc7d766 this code
became unused.

Fixes: 337dc7d766 ("r600: remove TGSI code path")
Reviewed-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22743>
This commit is contained in:
Thomas H.P. Andersen 2023-04-27 20:40:42 +02:00 committed by Marge Bot
parent 1c1855cc00
commit 0a9473b32d

View file

@ -90,30 +90,6 @@ The compiler must issue the source argument to slots z, y, and x
PS - face_gpr.z = SampleMask
face_gpr.w = SampleID
*/
#define R600_SHADER_BUFFER_INFO_SEL (512 + R600_BUFFER_INFO_OFFSET / 16)
static int r600_shader_from_tgsi(struct r600_context *rctx,
struct r600_pipe_shader *pipeshader,
union r600_shader_key key);
static void r600_add_gpr_array(struct r600_shader *ps, int start_gpr,
int size, unsigned comp_mask) {
if (!size)
return;
if (ps->num_arrays == ps->max_arrays) {
ps->max_arrays += 64;
ps->arrays = realloc(ps->arrays, ps->max_arrays *
sizeof(struct r600_shader_array));
}
int n = ps->num_arrays;
++ps->num_arrays;
ps->arrays[n].comp_mask = comp_mask;
ps->arrays[n].gpr_start = start_gpr;
ps->arrays[n].gpr_count = size;
}
static void r600_dump_streamout(struct pipe_stream_output_info *so)
{