Disabled code to make screen blue when app is loading, until I'll implement proper logo loading

This commit is contained in:
pelya
2011-05-26 11:29:37 +03:00
parent 3409066830
commit 8eaa947706

View File

@@ -1115,10 +1115,12 @@ public class GLSurfaceView_SDL extends SurfaceView implements SurfaceHolder.Call
private void DrawLogo() {
// TODO: draw some logo instead of making screen non-black
/*
mGL.glClearColor(0.0f, 0.5f, 0.7f, 1.0f);
mGL.glClear(mGL.GL_COLOR_BUFFER_BIT | mGL.GL_DEPTH_BUFFER_BIT);
mGL.glFlush();
mGL.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
*/
}
private boolean mDone;