mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
15 lines
277 B
C++
15 lines
277 B
C++
|
|
#ifndef GX_GL_SDL_GL_GLSL_PROGRAM_HPP
|
||
|
|
#define GX_GL_SDL_GL_GLSL_PROGRAM_HPP
|
||
|
|
|
||
|
|
#include "gx/glsdl/GLObject.hpp"
|
||
|
|
|
||
|
|
class GLShader;
|
||
|
|
|
||
|
|
class GLGLSLProgram : public GLObject {
|
||
|
|
public:
|
||
|
|
// Static functions
|
||
|
|
static GLGLSLProgram* Find(GLShader*, GLShader*);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|