Files
vimix/ImageShader.h
brunoherbelin 37a6754de2 Extend mechanism of visitor for all important classes that has
attributes of a scene (for saving in XML, or other visitors)
2020-04-01 14:41:42 +02:00

22 lines
319 B
C++

#ifndef IMAGESHADER_H
#define IMAGESHADER_H
#include "Shader.h"
class ImageShader : public Shader
{
public:
ImageShader();
virtual ~ImageShader() {}
virtual void use();
virtual void reset();
virtual void accept(Visitor& v);
float brightness;
float contrast;
};
#endif // IMAGESHADER_H