mirror of
https://github.com/YACReader/yacreader
synced 2025-07-23 07:24:58 -04:00
Added call to missing glClearColor method in flow classes, this was causing render issues in some platforms.
This commit is contained in:
@ -309,8 +309,8 @@ void YACReaderFlowGL::initializeGL()
|
||||
|
||||
void YACReaderFlowGL::paintGL()
|
||||
{
|
||||
/*glClearDepth(1.0);
|
||||
glClearColor(1,1,1,1);*/
|
||||
/*glClearDepth(1.0);*/
|
||||
glClearColor(0,0,0,1);
|
||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||
/*glLoadIdentity();
|
||||
glTranslatef(0.0, 0.0, -10.0);
|
||||
|
Reference in New Issue
Block a user