thunderbrew/src/gx/gll/GLGLSLProgram.h

15 lines
263 B
C
Raw Normal View History

2023-01-02 13:17:18 -06:00
#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