summaryrefslogtreecommitdiff
path: root/gui/src/chainImage.h
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2017-09-07 14:33:28 +0100
committerTim Redfern <tim@getdrop.com>2017-09-07 14:33:28 +0100
commitd68b8424c8e63cb84147d021608fe5a69b30b288 (patch)
tree0f9c7ebacef3c5c05067a8bafa6e00f5657c714d /gui/src/chainImage.h
parent08e3568bf2e017268652c118f403babce3c6486f (diff)
threaded image loader (not working)
Diffstat (limited to 'gui/src/chainImage.h')
-rw-r--r--gui/src/chainImage.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/src/chainImage.h b/gui/src/chainImage.h
index aa7301d..66b2dbf 100644
--- a/gui/src/chainImage.h
+++ b/gui/src/chainImage.h
@@ -2,6 +2,7 @@
#include "ofMain.h"
#include "ofxJSON.h"
+#include "ofxThreadedImageLoader.h"
#define THUMB_BORDER_RATIO 0.8
#define THUMB_SIZE 160
@@ -84,6 +85,9 @@ class chainImageSet{
dragRotate=0.0f;
dragPoint=ofPoint(0,0);
}
+ chainImageSet(const chainImageSet& mom){
+ chainImageSet();
+ }
void drawGui(int x,int y,bool is_selected);
void drawOutput();
void update();
@@ -117,4 +121,6 @@ class chainImageSet{
bool additive;
float intensity;
+
+ ofxThreadedImageLoader loader;
}; \ No newline at end of file