mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 15:50:17 +01:00
i965/nir: Remove the prog parameter from brw_nir_lower_inputs
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
a2e1e3d325
commit
ca941799ce
1 changed files with 2 additions and 4 deletions
|
|
@ -28,9 +28,7 @@
|
|||
#include "program/prog_to_nir.h"
|
||||
|
||||
static void
|
||||
brw_nir_lower_inputs(nir_shader *nir,
|
||||
const struct gl_program *prog,
|
||||
bool is_scalar)
|
||||
brw_nir_lower_inputs(nir_shader *nir, bool is_scalar)
|
||||
{
|
||||
nir_assign_var_locations(&nir->inputs, &nir->num_inputs,
|
||||
is_scalar ? type_size_scalar : type_size_vec4);
|
||||
|
|
@ -141,7 +139,7 @@ brw_create_nir(struct brw_context *brw,
|
|||
/* Get rid of split copies */
|
||||
nir_optimize(nir, is_scalar);
|
||||
|
||||
brw_nir_lower_inputs(nir, prog, is_scalar);
|
||||
brw_nir_lower_inputs(nir, is_scalar);
|
||||
brw_nir_lower_outputs(nir, is_scalar);
|
||||
nir_assign_var_locations(&nir->uniforms,
|
||||
&nir->num_uniforms,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue