Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/GPU_basic_shader.h')
-rw-r--r--source/blender/gpu/GPU_basic_shader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpu/GPU_basic_shader.h b/source/blender/gpu/GPU_basic_shader.h
index 230a5defe7b..8a97b72a3a8 100644
--- a/source/blender/gpu/GPU_basic_shader.h
+++ b/source/blender/gpu/GPU_basic_shader.h
@@ -53,7 +53,7 @@ typedef enum GPUBasicShaderOption {
GPU_SHADER_LINE = (1 << 7), /* draw lines */
GPU_SHADER_FLAT_NORMAL = (1 << 8), /* use flat normals */
GPU_SHADER_OPTIONS_NUM = 9,
- GPU_SHADER_OPTION_COMBINATIONS = (1 << GPU_SHADER_OPTIONS_NUM)
+ GPU_SHADER_OPTION_COMBINATIONS = (1 << GPU_SHADER_OPTIONS_NUM),
} GPUBasicShaderOption;
/* Keep these in sync with gpu_shader_basic_frag.glsl */
@@ -69,7 +69,7 @@ typedef enum GPUBasicShaderStipple {
GPU_SHADER_STIPPLE_S3D_INTERLACE_COLUMN = 8,
GPU_SHADER_STIPPLE_S3D_INTERLACE_COLUMN_SWAP = 9,
GPU_SHADER_STIPPLE_S3D_INTERLACE_CHECKER = 10,
- GPU_SHADER_STIPPLE_S3D_INTERLACE_CHECKER_SWAP = 11
+ GPU_SHADER_STIPPLE_S3D_INTERLACE_CHECKER_SWAP = 11,
} GPUBasicShaderStipple;
void GPU_basic_shaders_init(void);