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:
authorCampbell Barton <ideasman42@gmail.com>2014-06-12 20:22:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-12 20:22:40 +0400
commit9f0466fb6bc5db57c1d97a1e36859dc1d50a7228 (patch)
treeefe9d7d31b061b6d9666dbd8dbdc506a7607311d /source/blender/gpu/intern
parentce460c61791c7735c64d62061bcdcd0bc207320e (diff)
Quiet double promotion warning & ws edit
Diffstat (limited to 'source/blender/gpu/intern')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index bad561d08c7..a4fddb3d47c 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -711,7 +711,7 @@ void GPU_invalid_tex_init(void)
void GPU_invalid_tex_bind(int mode)
{
- switch(mode) {
+ switch (mode) {
case GL_TEXTURE_1D:
glBindTexture(GL_TEXTURE_1D, GG.invalid_tex_1D->bindcode);
break;