summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2018-01-25 12:43:48 -0700
committerBrian Paul <brianp@vmware.com>2018-01-26 13:52:48 -0700
commitaff5d9c256d471de1722dbfcacdc09faa260799b (patch)
tree2bac71800d18593b7e48887aba2a00289dd99cea /src/mesa/drivers
parentd9832f1fc45aa5fcf5eb5e206603265ae9bfa12a (diff)
mesa: change gl_compile_status enums to uppercase
To follow the convention of other enums. Reviewed-by: Neha Bhende <bhenden@vmware.com>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/common/meta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c
index f4830ec28a6..a48f7000269 100644
--- a/src/mesa/drivers/common/meta.c
+++ b/src/mesa/drivers/common/meta.c
@@ -137,7 +137,7 @@ meta_compile_shader_with_debug(struct gl_context *ctx, gl_shader_stage stage,
sh = _mesa_new_shader(name, stage);
sh->Source = strdup(source);
- sh->CompileStatus = compile_failure;
+ sh->CompileStatus = COMPILE_FAILURE;
_mesa_compile_shader(ctx, sh);
if (!sh->CompileStatus) {