mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-05 01:29:07 +00:00
13 lines
240 B
C++
13 lines
240 B
C++
|
|
#ifndef GX_SDL_GL_PIXEL_SHADER_HPP
|
||
|
|
#define GX_SDL_GL_PIXEL_SHADER_HPP
|
||
|
|
|
||
|
|
#include "gx/glsdl/GLShader.hpp"
|
||
|
|
|
||
|
|
class GLPixelShader : public GLShader {
|
||
|
|
public:
|
||
|
|
// Static functions
|
||
|
|
static GLPixelShader* Create(void);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|