summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/glspirv.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2018-01-25 12:43:48 -0700
committerBrian Paul <[email protected]>2018-01-26 13:52:48 -0700
commitaff5d9c256d471de1722dbfcacdc09faa260799b (patch)
tree2bac71800d18593b7e48887aba2a00289dd99cea /src/mesa/main/glspirv.c
parentd9832f1fc45aa5fcf5eb5e206603265ae9bfa12a (diff)
mesa: change gl_compile_status enums to uppercase
To follow the convention of other enums. Reviewed-by: Neha Bhende <[email protected]>
Diffstat (limited to 'src/mesa/main/glspirv.c')
-rw-r--r--src/mesa/main/glspirv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/glspirv.c b/src/mesa/main/glspirv.c
index 81303057d05..03f761219be 100644
--- a/src/mesa/main/glspirv.c
+++ b/src/mesa/main/glspirv.c
@@ -84,7 +84,7 @@ _mesa_spirv_shader_binary(struct gl_context *ctx,
_mesa_shader_spirv_data_reference(&sh->spirv_data, spirv_data);
_mesa_spirv_module_reference(&spirv_data->SpirVModule, module);
- sh->CompileStatus = compile_failure;
+ sh->CompileStatus = COMPILE_FAILURE;
free((void *)sh->Source);
sh->Source = NULL;