diff options
author | Jason Ekstrand <[email protected]> | 2015-11-11 10:46:09 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-11-23 11:02:15 -0800 |
commit | 1417f6a216b46dbbaa1bfe0cef97e2b4a48224c0 (patch) | |
tree | 76081a43c4f35425327a259c8b3159e304bb1836 /src/mesa/drivers/dri/i965/brw_nir.c | |
parent | ce767bbdfff7c2a7829b652c111a11eb9ddba026 (diff) |
nir/lower_tex: Report progress
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_nir.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index 16969530577..62f3171329c 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -260,7 +260,7 @@ brw_preprocess_nir(nir_shader *nir, bool is_scalar) .lower_txp = ~0, }; - OPT_V(nir_lower_tex, &tex_options); + OPT(nir_lower_tex, &tex_options); OPT(nir_normalize_cubemap_coords); OPT(nir_lower_global_vars_to_local); |