From dd90e93403461ba9dfe42c6f2a9e5ce65880bd4b Mon Sep 17 00:00:00 2001 From: raven02 Date: Sat, 23 Feb 2013 16:23:24 +0800 Subject: [PATCH] glClearColor(0,0,0,1); --- GPU/GLES/Framebuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/GLES/Framebuffer.cpp b/GPU/GLES/Framebuffer.cpp index 643f1fc781..51a2f178d5 100644 --- a/GPU/GLES/Framebuffer.cpp +++ b/GPU/GLES/Framebuffer.cpp @@ -127,7 +127,7 @@ FramebufferManager::FramebufferManager() : // by themselves. glstate.depthWrite.set(GL_TRUE); glstate.colorMask.set(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE); - glClearColor(0, 0, 0, 0); + glClearColor(0,0,0,1); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); convBuf = new u8[480 * 272 * 4];