feat(gx): add uncompleted CGxDeviceGLSDL targeting Windows and Linux

This commit is contained in:
phaneron 2023-11-15 19:31:16 -05:00
parent 827c86b194
commit b3b75a716c
42 changed files with 7681 additions and 5 deletions

View file

@ -0,0 +1,12 @@
#ifndef GX_SDL_GL_PIXEL_SHADER_HPP
#define GX_SDL_GL_PIXEL_SHADER_HPP
#include "gx/glsdl/GLShader.hpp"
class GLPixelShader : public GLShader {
public:
// Static functions
static GLPixelShader* Create(void);
};
#endif