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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 17:23:17 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 18:49:24 +0300
commit4f8f0f3208b51fd2c599917415dcfaa3cf424d5f (patch)
treee7e517f15f6aadf257bf9ca6892107662ef588a4 /intern/cycles/util
parentaa81a05de8680befc87740658128511a8ade4b85 (diff)
Fix issues in Cycles standalone, particularly related to render display
Some code was removed to avoid storing the combined pass when viewport rendering other passes. But we can keep this by default, Blender overrides the list of passes entirely.
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_view.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_view.cpp b/intern/cycles/util/util_view.cpp
index f23174fd6dc..9d9ff451b3b 100644
--- a/intern/cycles/util/util_view.cpp
+++ b/intern/cycles/util/util_view.cpp
@@ -134,7 +134,7 @@ static void view_display()
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
- gluOrtho2D(0, V.width, 0, V.height);
+ glOrtho(0, V.width, 0, V.height, -1, 1);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();