mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 17:19:09 +00:00
12 lines
240 B
C++
12 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
|