diff options
author | Vinson Lee <[email protected]> | 2013-07-17 20:51:50 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-07-17 20:57:54 -0700 |
commit | 21f97446f4b3e445edb1372ebc7bd89ad2f7f3d2 (patch) | |
tree | b40d2647fff340a95cd5e296144dbb46897cdd82 /src | |
parent | 77311dab3aae6630e61fc50013754cf2f4e5f90c (diff) |
glsl: Remove comma at end of enumerator list.
Fixes this build error on OpenBSD 5.3.
In file included from ../../src/mesa/main/ff_fragment_shader.cpp:53:
./../glsl/ir_optimization.h:64: error: comma at end of enumerator list
Signed-off-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/ir_optimization.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_optimization.h b/src/glsl/ir_optimization.h index fad6f1bfe5f..2c1479ff4f9 100644 --- a/src/glsl/ir_optimization.h +++ b/src/glsl/ir_optimization.h @@ -61,7 +61,7 @@ enum lower_packing_builtins_op { LOWER_UNPACK_SNORM_4x8 = 0x0200, LOWER_PACK_UNORM_4x8 = 0x0400, - LOWER_UNPACK_UNORM_4x8 = 0x0800, + LOWER_UNPACK_UNORM_4x8 = 0x0800 }; bool do_common_optimization(exec_list *ir, bool linked, |