remove couts

This commit is contained in:
jrkb 2023-04-08 09:51:31 +02:00
parent f118627dbc
commit f4ad2679c9

View file

@ -98,7 +98,6 @@ LayerID LayerComposition::addLayer(const ComboIdentifier & identifier,
layer->setProps(props); layer->setProps(props);
layer->setup(); layer->setup();
std::vector <ofxMsdfgen::FontVariation> msdfVariations; std::vector <ofxMsdfgen::FontVariation> msdfVariations;
cout << "yeah yeah" << layerID << endl;
for(const auto & v : variations){ for(const auto & v : variations){
msdfVariations.push_back({v.name, v.value}); msdfVariations.push_back({v.name, v.value});
} }
@ -109,13 +108,9 @@ LayerID LayerComposition::addLayer(const ComboIdentifier & identifier,
layers[layer->getId()] = layer; layers[layer->getId()] = layer;
atlasLayerCombos[identifier] = std::move(combo); atlasLayerCombos[identifier] = std::move(combo);
layerID = layer->getId(); layerID = layer->getId();
cout << "yeah yeah and the id is then:" << layerID << endl;
} }
} }
}else{
cout << "whaaat we didnt find anyone like this" << layerID << endl;
} }
cout << "LayerComposition::addLayer returns " << layerID << endl;
return layerID; return layerID;
} }