2#ifndef GRAMODS_GRAPHICS_RASTERPROCESSOR
3#define GRAMODS_GRAPHICS_RASTERPROCESSOR
5#include <gmGraphics/config.hh>
13BEGIN_NAMESPACE_GMGRAPHICS;
31 void setVertexCode(std::string code);
37 void setFragmentCode(std::string code);
53 GLuint getProgramId();
58 std::unique_ptr<Impl> _impl;
62END_NAMESPACE_GMGRAPHICS;
Encapsulated OpenGL code for executing a specified fragment shader on every raster point in the curre...
Definition RasterProcessor.hh:19
Definition RasterProcessor.cpp:9