This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
gl: fix long-standing bug where clear color didn't properly set
the alpha value.
legacy
Sam Hocevar
sam
13 years ago
parent
aab3fb7c45
commit
8a239b4df7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/video.cpp
+ 1
- 1
src/video.cpp
View File
@@ -70,7 +70,7 @@ void Video::Setup(ivec2 size)
VideoData::saved_viewport = size;
#endif
glClearColor(0.1f, 0.2f, 0.3f,
0
.0f);
glClearColor(0.1f, 0.2f, 0.3f,
1
.0f);
glClearDepth(1.0);
#if defined HAVE_GL_2X && !defined __APPLE__
Write
Preview
Loading…
Cancel
Save