mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
25 lines
390 B
C++
25 lines
390 B
C++
#ifndef IMAGEPROCESSINGSHADER_H
|
|
#define IMAGEPROCESSINGSHADER_H
|
|
|
|
#include "Shader.h"
|
|
|
|
class ImageProcessingShader : public Shader
|
|
{
|
|
public:
|
|
|
|
ImageProcessingShader();
|
|
virtual ~ImageShader() {}
|
|
|
|
virtual void use();
|
|
virtual void reset();
|
|
virtual void accept(Visitor& v);
|
|
|
|
float brightness;
|
|
float contrast;
|
|
float stipple;
|
|
};
|
|
|
|
|
|
|
|
#endif // IMAGEPROCESSINGSHADER_H
|