Explorar el Código

gl: fix long-standing bug where clear color didn't properly set

the alpha value.
legacy
Sam Hocevar sam hace 13 años
padre
commit
8a239b4df7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/video.cpp

+ 1
- 1
src/video.cpp Ver fichero

@@ -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__


Cargando…
Cancelar
Guardar