Explorar el Código

gpu: move Video::Clear to Renderer::Clear.

master
Sam Hocevar hace 11 años
padre
commit
1ead8498b0
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      neercs/video/render.cpp

+ 3
- 3
neercs/video/render.cpp Ver fichero

@@ -1452,12 +1452,12 @@ void Render::Draw2D()

RenderContext rc;
rc.SetBlendFunc(BlendFunc::SrcColor, BlendFunc::DstAlpha);
rc.SetClearColor(vec4(0.0f, 0.0f, 0.0f, 1.0f));
rc.SetClearDepth(1.0f); // set depth buffer

glEnable(GL_TEXTURE_2D);

rc.SetClearColor(vec4(0.0f, 0.0f, 0.0f, 1.0f));
rc.SetClearDepth(1.0f); // set depth buffer
Video::Clear(ClearMask::Color | ClearMask::Depth);
g_renderer->Clear(ClearMask::Color | ClearMask::Depth);

m_txt_screen->Blit(border, canvas_size);
if (g_setup)


Cargando…
Cancelar
Guardar