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:
authorClément Foucault <foucault.clem@gmail.com>2017-07-04 12:40:12 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-07-04 12:40:12 +0300
commitfc8f6e8f7a3fcc3b17ee7db6291fb9dcb71dc185 (patch)
treecbd9aabeb1623e1a4ac420f70db599b72cda27c7 /source/blender/gpu/shaders
parentb09052002c3bc9ffcf60dd8e2efe0374ca6e550f (diff)
Eevee: Fix Closure define.
Diffstat (limited to 'source/blender/gpu/shaders')
-rw-r--r--source/blender/gpu/shaders/gpu_shader_material.glsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/shaders/gpu_shader_material.glsl b/source/blender/gpu/shaders/gpu_shader_material.glsl
index 5765644cd2b..5458eb91199 100644
--- a/source/blender/gpu/shaders/gpu_shader_material.glsl
+++ b/source/blender/gpu/shaders/gpu_shader_material.glsl
@@ -21,7 +21,7 @@ struct Closure {
float opacity;
};
-#define CLOSURE_DEFAULT Closure(vec3(0.0), 0.0);
+#define CLOSURE_DEFAULT Closure(vec3(0.0), 0.0)
Closure closure_mix(Closure cl1, Closure cl2, float fac)
{