ofxGpuLutExample
コード変更点
ofxGpuLut.cpp
1 2 3 4 5 6 7 8 |
void ofxGpuLut::load(ofImage lutImage){ load(lutImage.getTexture()); } void ofxGpuLut::load(string path){ lutImage.load(path); load(lutImage.getTexture()); } |
↓
1 2 3 4 5 6 7 8 |
void ofxGpuLut::load(ofImage lutImage){ load(lutImage.getTextureReference()); } void ofxGpuLut::load(string path){ lutImage.loadImage(path); load(lutImage.getTextureReference()); } |
oF0.8.4 OSX10.11.4 Xcode7.3
コメントを残す