mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
17
src/gx/gll/GLPixelShader.cpp
Normal file
17
src/gx/gll/GLPixelShader.cpp
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue