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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-10-18 17:20:23 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-10-18 17:20:23 +0400
commit92219991789557648bb187efa5823b941bdbfc90 (patch)
treee2e0eddabf6a03b0ee3f85cf01760b9e546291fc /source/blender
parent82329ba1c3437909b18f007345bf00ceec792965 (diff)
Mark unused variables.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_bump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/shader/nodes/node_shader_bump.c b/source/blender/nodes/shader/nodes/node_shader_bump.c
index 9fd5f495c3b..315565e619b 100644
--- a/source/blender/nodes/shader/nodes/node_shader_bump.c
+++ b/source/blender/nodes/shader/nodes/node_shader_bump.c
@@ -46,7 +46,7 @@ static bNodeSocketTemplate sh_node_bump_out[]= {
{ -1, 0, "" }
};
-static int gpu_shader_bump(GPUMaterial *mat, bNode *node, GPUNodeStack *in, GPUNodeStack *out)
+static int gpu_shader_bump(GPUMaterial *mat, bNode *UNUSED(node), GPUNodeStack *in, GPUNodeStack *out)
{
return GPU_stack_link(mat, "node_bump", in, out, GPU_builtin(GPU_VIEW_NORMAL));
}