diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-10-31 22:25:05 -0400 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2019-11-13 15:27:56 +0000 |
commit | 771d23584a1fa79f2547a74ff680fbec56bb2ee9 (patch) | |
tree | a37867c01c749d9ae4da22365a644382ac716082 /src/gallium/drivers/panfrost/pan_blend_shaders.c | |
parent | e343f2ceb91fb177f49788d9ce609819082f60c5 (diff) |
pan/midgard: Remove util/ra support
It's now unused, in favour of LCRA.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_blend_shaders.c')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_blend_shaders.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_blend_shaders.c b/src/gallium/drivers/panfrost/pan_blend_shaders.c index b31b3ce14c8..33a1f61c941 100644 --- a/src/gallium/drivers/panfrost/pan_blend_shaders.c +++ b/src/gallium/drivers/panfrost/pan_blend_shaders.c @@ -173,7 +173,7 @@ panfrost_compile_blend_shader( /* Compile the built shader */ midgard_program program; - midgard_compile_shader_nir(&ctx->compiler, shader, &program, true, screen->gpu_id); + midgard_compile_shader_nir(shader, &program, true, screen->gpu_id); /* At least two work registers are needed due to an encoding quirk */ res.work_count = MAX2(program.work_register_count, 2); |