aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-02-24 15:27:07 -0800
committerMatt Turner <[email protected]>2017-03-23 14:34:43 -0700
commit0012a6144aa32e907aa27e8a9fb42472f01066ea (patch)
tree98711195da3f7a2f98bf6e602530cb3fa46bcad5 /src/compiler/nir/nir.h
parentc597f87739bae7d0d386381417a0aba6bbc39fe2 (diff)
nir: Return progress from nir_lower_doubles().
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 910352dba07..1b9e17fe89d 100644
--- a/src/compiler/nir/nir.h
+++ b/src/compiler/nir/nir.h
@@ -2567,7 +2567,7 @@ typedef enum {
nir_lower_dmod = (1 << 8)
} nir_lower_doubles_options;
-void nir_lower_doubles(nir_shader *shader, nir_lower_doubles_options options);
+bool nir_lower_doubles(nir_shader *shader, nir_lower_doubles_options options);
void nir_lower_64bit_pack(nir_shader *shader);
bool nir_normalize_cubemap_coords(nir_shader *shader);