]> git.sesse.net Git - movit/blobdiff - sandbox_effect.h
Stop using BGR, BGRA and grayscale formats.
[movit] / sandbox_effect.h
index 391be6d78520121193fb81537e615aea7be6e7a7..25c79920109cbbdbf1d0418c41566df863a037df 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef _SANDBOX_EFFECT_H
-#define _SANDBOX_EFFECT_H 1
+#ifndef _MOVIT_SANDBOX_EFFECT_H
+#define _MOVIT_SANDBOX_EFFECT_H 1
 
 // This effect, by default, does nothing.
 //
@@ -8,17 +8,25 @@
 // throwaway code. When you're happy, you can do a bit of search and replace
 // to give it a proper name and its own place in the build system.
 
+#include <epoxy/gl.h>
+#include <string>
+
 #include "effect.h"
 
+namespace movit {
+
 class SandboxEffect : public Effect {
 public:
        SandboxEffect();
+       virtual std::string effect_type_id() const { return "SandboxEffect"; }
        std::string output_fragment_shader();
 
-       void set_uniforms(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num);
+       void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num);
 
 private:
        float parm;
 };
 
-#endif // !defined(_SANDBOX_EFFECT_H)
+}  // namespace movit
+
+#endif // !defined(_MOVIT_SANDBOX_EFFECT_H)