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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2013-01-20 13:22:11 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2013-01-20 13:22:11 +0400
commit517ac5c57c1e11ce6ba9200ee8cbf49ad86ac02a (patch)
treea498be007844affddd8647ee15030df1296bbdc0 /source/blender/windowmanager/intern/wm_subwindow.c
parent8aa891ac6dd12e530817efff912beebd695d91e8 (diff)
edited wmSubWindowScissorSet for readability
Diffstat (limited to 'source/blender/windowmanager/intern/wm_subwindow.c')
-rw-r--r--source/blender/windowmanager/intern/wm_subwindow.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/source/blender/windowmanager/intern/wm_subwindow.c b/source/blender/windowmanager/intern/wm_subwindow.c
index 1ed9ffb3b6c..1fbd8a8f5c2 100644
--- a/source/blender/windowmanager/intern/wm_subwindow.c
+++ b/source/blender/windowmanager/intern/wm_subwindow.c
@@ -241,7 +241,8 @@ static wmSubWindow *_curswin = NULL;
void wmSubWindowScissorSet(wmWindow *win, int swinid, rcti *srct)
{
- int width, height;
+ int x, y, width, height;
+
_curswin = swin_from_swinid(win, swinid);
if (_curswin == NULL) {
@@ -250,24 +251,30 @@ void wmSubWindowScissorSet(wmWindow *win, int swinid, rcti *srct)
}
win->curswin = _curswin;
+
_curwindow = win;
+ x = _curswin->winrct.xmin;
+ y = _curswin->winrct.ymin;
width = BLI_rcti_size_x(&_curswin->winrct) + 1;
height = BLI_rcti_size_y(&_curswin->winrct) + 1;
- glViewport(_curswin->winrct.xmin, _curswin->winrct.ymin, width, height);
+
+ glViewport(x, y, width, height);
if (srct) {
- int width = BLI_rcti_size_x(srct) + 1; /* only here */
- int height = BLI_rcti_size_y(srct) + 1;
- glScissor(srct->xmin, srct->ymin, width, height);
+ x = srct->xmin;
+ y = srct->ymin;
+ width = BLI_rcti_size_x(srct) + 1;
+ height = BLI_rcti_size_y(srct) + 1;
}
- else
- glScissor(_curswin->winrct.xmin, _curswin->winrct.ymin, width, height);
+
+ glScissor(x, y, width, height);
wmOrtho2(-GLA_PIXEL_OFS, (float)width - GLA_PIXEL_OFS, -GLA_PIXEL_OFS, (float)height - GLA_PIXEL_OFS);
- glLoadIdentity();
- glFlush();
+ glLoadIdentity(); /* reset MODELVIEW */
+
+ glFlush(); /* XXX: jwilkins - is this really needed here? */
}