mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-16 04:32:29 +00:00
15 lines
263 B
C
15 lines
263 B
C
|
|
#ifndef GX_GLL_GL_GLSL_PROGRAM_H
|
||
|
|
#define GX_GLL_GL_GLSL_PROGRAM_H
|
||
|
|
|
||
|
|
#include "gx/gll/GLObject.h"
|
||
|
|
|
||
|
|
class GLShader;
|
||
|
|
|
||
|
|
class GLGLSLProgram : public GLObject {
|
||
|
|
public:
|
||
|
|
// Static functions
|
||
|
|
static GLGLSLProgram* Find(GLShader*, GLShader*);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|