blob: 8ec1af2b3830cd2ca10c94cf75d2ab75233cf5e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#pragma once
/*
#include "ofMain.h"
#define STRINGIFY(e) #e
class ofxGpuRemapBlend{
private:
ofShader lutShader;
ofTexture lut;
string vertexShader;
string fragmentShader;
ofImage lutImage;
float blendAmt;
public:
ofxGpuRemapBlend(blendAmt=1;);
~ofxGpuRemapBlend();
void load(ofTexture lutTexture);
void load(ofImage lutImage);
void load(string path);
void setBlend(float amt);
void begin();
void end();
};
*/
|