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:
authorThomas Dinges <blender@dingto.org>2013-04-11 19:21:03 +0400
committerThomas Dinges <blender@dingto.org>2013-04-11 19:21:03 +0400
commit38cf856ea938b1769916d368d007073c842fdd22 (patch)
tree157d455a5f7779acdccd62b8550c2ddfe1642fcc /source/blender/editors/render
parent120fe74ffeded5c5b8858cb8ffed15530aed86cb (diff)
Compile fix for r55970.
Diffstat (limited to 'source/blender/editors/render')
-rw-r--r--source/blender/editors/render/render_opengl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/render/render_opengl.c b/source/blender/editors/render/render_opengl.c
index ead5a64d4f8..2c54ce4cdef 100644
--- a/source/blender/editors/render/render_opengl.c
+++ b/source/blender/editors/render/render_opengl.c
@@ -206,7 +206,7 @@ static void screen_opengl_render_apply(OGLRender *oglrender)
/* simple accumulation, less hassle then FSAA FBO's */
static float jit_ofs[32][2];
float winmat_jitter[4][4];
- int *accum_buffer = MEM_mallocN(sizex * sizey * sizeof(int) * 4, "accum1");;
+ int *accum_buffer = MEM_mallocN(sizex * sizey * sizeof(int) * 4, "accum1");
int i, j;
BLI_jitter_init(jit_ofs[0], scene->r.osa);