mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 20:12:29 +00:00
14 lines
263 B
C++
14 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
|