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:
authorjulianeisel <julian_eisel@web.de>2014-12-20 18:18:18 +0300
committerjulianeisel <julian_eisel@web.de>2014-12-20 18:18:18 +0300
commit071ec918f4cd55b1615ba5acbdffc8e14c738cfe (patch)
treeba7edff0da2e77d96ae53fe7955a37993fd64ad6 /source/blender/editors/render/render_opengl.c
parentc2e56a52678926dde251c2ee89113b168c7ac591 (diff)
Fix T42961: GPencil - Refactor object/scene data behaviour
D937 with minor edits (whitespace only) @aligorith, I double checked everything runs smoothly, blame me if I missed something ;). Sorry for just taking the initiative and committing without talking to you, but I wasn't able to catch you the last days. This should be fixed before the release IMHO, but I don't think it's important enough to be committed during BCon5, so sorry again, but hopefully everything is okay :)
Diffstat (limited to 'source/blender/editors/render/render_opengl.c')
-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 7df281b70bd..cd569365381 100644
--- a/source/blender/editors/render/render_opengl.c
+++ b/source/blender/editors/render/render_opengl.c
@@ -187,7 +187,7 @@ static void screen_opengl_render_apply(OGLRender *oglrender)
glTranslatef(sizex / 2, sizey / 2, 0.0f);
G.f |= G_RENDER_OGL;
- ED_gpencil_draw_ex(gpd, sizex, sizey, scene->r.cfra);
+ ED_gpencil_draw_ex(scene, gpd, sizex, sizey, scene->r.cfra, SPACE_SEQ);
G.f &= ~G_RENDER_OGL;
gp_rect = MEM_mallocN(sizex * sizey * sizeof(unsigned char) * 4, "offscreen rect");