diff --git a/src/LayerComposition.cpp b/src/LayerComposition.cpp index d18c41a..599f8fc 100644 --- a/src/LayerComposition.cpp +++ b/src/LayerComposition.cpp @@ -1,4 +1,5 @@ #include "LayerComposition.h" +#include "ofUtils.h" namespace ofxVariableLab { @@ -34,16 +35,9 @@ void LayerComposition::update(){ } void LayerComposition::draw() const { - //ofClear(ofFloatColor( - //ofRandom(0, 1), - //ofRandom(0, 1), - //ofRandom(0, 1) - //)); for(const auto & layer : layers){ layer->draw(); } - ofPushStyle(); - ofPopStyle(); } shared_ptr LayerComposition::getAtlasImage(){