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>2012-05-31 22:40:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-31 22:40:06 +0400
commit02b927b8c4702cadf089f3e26fa553bdc66483b1 (patch)
treedb5a7e5a005de841d3c730a6b4ef73372ef741eb /source/blender/makesrna/intern/rna_image_api.c
parent9547b76c2e8e0f6aa07858e94e4f0c404b86ac7d (diff)
style cleanup
Diffstat (limited to 'source/blender/makesrna/intern/rna_image_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_image_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_image_api.c b/source/blender/makesrna/intern/rna_image_api.c
index f84e213bfd0..14d01444681 100644
--- a/source/blender/makesrna/intern/rna_image_api.c
+++ b/source/blender/makesrna/intern/rna_image_api.c
@@ -208,7 +208,7 @@ static int rna_Image_gl_load(Image *image, ReportList *reports, int filter, int
if (!error) {
/* clean glError buffer */
- while (glGetError() != GL_NO_ERROR){};
+ while (glGetError() != GL_NO_ERROR) {}
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, image->tpageflag & IMA_CLAMP_U ? GL_CLAMP : GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, image->tpageflag & IMA_CLAMP_V ? GL_CLAMP : GL_REPEAT);