Solve merge conflicts.

This commit is contained in:
Kalle Bladin
2016-06-07 12:54:52 -04:00
234 changed files with 262157 additions and 2398 deletions

View File

@@ -53,6 +53,7 @@ Renderable* Renderable::createFromDictionary(const ghoul::Dictionary& dictionary
std::string renderableType;
success = dictionary.getValue(KeyType, renderableType);
if (!success) {
LERROR("Renderable '" << name << "' did not have key '" << KeyType << "'");
return nullptr;
@@ -132,6 +133,10 @@ void Renderable::render(const RenderData& data)
{
}
void Renderable::postRender(const RenderData& data)
{
}
void Renderable::setPscUniforms(
ghoul::opengl::ProgramObject& program,
const Camera& camera,