diff options
author | Fox Caminiti <fox@foxcam.net> | 2023-02-17 17:20:18 -0500 |
---|---|---|
committer | Fox Caminiti <fox@foxcam.net> | 2023-02-17 17:20:18 -0500 |
commit | 02870398a99fab6351182fba407d7d733affa5a1 (patch) | |
tree | fb5f4744f46e9d7816072e4d01547034bca04bb2 /src/include/gl_calls.h | |
parent | fffb3474ee0321d73a47db01dbc4b6b19670ddc5 (diff) |
blend mode rendering halfway implemented
Diffstat (limited to 'src/include/gl_calls.h')
-rw-r--r-- | src/include/gl_calls.h | 5 |
1 files changed, 4 insertions, 1 deletions
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, |