summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-03-09 11:01:22 -0800
committerMatt Turner <[email protected]>2017-03-23 14:34:44 -0700
commitabc8a702d0f01852f85705a87c9d624300c1efec (patch)
tree9b08ab26713bbecdc04117304e34b1a8a7af571e /src/compiler/nir/nir.h
parenta934b002221eb9ad8c15cfe5ab2ff39e7432c2c6 (diff)
nir: Return progress from nir_lower_io().
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r--src/compiler/nir/nir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h
index 8e1721a92dc..388b5c85aef 100644
--- a/src/compiler/nir/nir.h
+++ b/src/compiler/nir/nir.h
@@ -2379,7 +2379,7 @@ typedef enum {
*/
nir_lower_io_force_sample_interpolation = (1 << 1),
} nir_lower_io_options;
-void nir_lower_io(nir_shader *shader,
+bool nir_lower_io(nir_shader *shader,
nir_variable_mode modes,
int (*type_size)(const struct glsl_type *),
nir_lower_io_options);