chore: initial commit

This commit is contained in:
fallenoak 2023-01-02 13:17:18 -06:00
commit 70b00c5c38
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
965 changed files with 264882 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#include "gx/gll/GLPixelShader.h"
#include "gx/gll/GL.h"
GLPixelShader* GLPixelShader::Create() {
// TODO
// GLPool stuff
GLPixelShader* shader = new GLPixelShader();
shader->m_ShaderID = 0;
shader->m_RefCount = 1;
shader->m_ShaderType = ePixelShader;
shader->m_UsingGLSL = 0;
shader->var5 = GL_FRAGMENT_PROGRAM_ARB;
return shader;
}