From 02870398a99fab6351182fba407d7d733affa5a1 Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Fri, 17 Feb 2023 17:20:18 -0500 Subject: blend mode rendering halfway implemented --- src/include/gl_calls.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/include/gl_calls.h') diff --git a/src/include/gl_calls.h b/src/include/gl_calls.h index 3c2bef0..3bc85fb 100644 --- a/src/include/gl_calls.h +++ b/src/include/gl_calls.h @@ -13,8 +13,11 @@ static default_gl_vertex_object DefaultVerts; static default_gl_vertex_object ShapeVerts; static gl_vertex_shader GL_DefaultVertexObjects; static uint32 DefaultVertexShader; +static uint32 DefaultFragmentShader; // unused static uint32 DefaultShaderProgram; -static uint32 MaskShaderProgram; +static uint32 BlendVertexShader; +static uint32 BlendFragmentShader; +static uint32 BlendShaderProgram; float GL_DefaultVertices[] = { 1.0f, 1.0f, 0.0f, 1.0f, 1.0f, -- cgit v1.2.3