Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(72)

Unified Diff: source/blender/editors/space_graph/space_graph.c

Issue 5415058: workaround for Mesa SwRast bug with alpha in compositing window managers in X11 Base URL: https://svn.blender.org/svnroot/bf-blender/trunk/blender/
Patch Set: Created 13 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/blender/editors/space_file/space_file.c ('k') | source/blender/editors/space_image/space_image.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/blender/editors/space_graph/space_graph.c
===================================================================
--- source/blender/editors/space_graph/space_graph.c (revision 42008)
+++ source/blender/editors/space_graph/space_graph.c (working copy)
@@ -230,7 +230,7 @@
/* clear and setup matrix */
UI_GetThemeColor3fv(TH_BACK, col);
- glClearColor(col[0], col[1], col[2], 0.0);
+ glClearColor(col[0], col[1], col[2], 1.0);
glClear(GL_COLOR_BUFFER_BIT);
UI_view2d_view_ortho(v2d);
@@ -325,7 +325,7 @@
/* clear and setup matrix */
UI_GetThemeColor3fv(TH_BACK, col);
- glClearColor(col[0], col[1], col[2], 0.0);
+ glClearColor(col[0], col[1], col[2], 1.0);
glClear(GL_COLOR_BUFFER_BIT);
UI_view2d_view_ortho(v2d);
« no previous file with comments | « source/blender/editors/space_file/space_file.c ('k') | source/blender/editors/space_image/space_image.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b