Explorar el Código

gpu: implement blend function and alpha test in the renderer.

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

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

@@ -1453,9 +1453,9 @@ void Render::Draw2D()

RenderContext rc;
rc.SetAlphaBlend(true);
rc.SetBlendFunc(BlendFactor::SrcColor, BlendFactor::DstAlpha);

glEnable(GL_TEXTURE_2D);
glBlendFunc(GL_SRC_COLOR, GL_DST_ALPHA);

rc.SetClearColor(vec4(0.0f, 0.0f, 0.0f, 1.0f));
rc.SetClearDepth(1.0f); // set depth buffer


Cargando…
Cancelar
Guardar