mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 13:41:06 +03:00
13 lines
232 B
C++
13 lines
232 B
C++
#ifndef GX_GLL_GL_PIXEL_SHADER_H
|
|
#define GX_GLL_GL_PIXEL_SHADER_H
|
|
|
|
#include "gx/gll/GLShader.h"
|
|
|
|
class GLPixelShader : public GLShader {
|
|
public:
|
|
// Static functions
|
|
static GLPixelShader* Create(void);
|
|
};
|
|
|
|
#endif
|