implement right-to-left

This commit is contained in:
2018-07-27 10:47:48 +02:00
parent 9b1ced76c2
commit a2abdfba7e
5 changed files with 68 additions and 15 deletions

View File

@@ -348,7 +348,9 @@ void App::update(float dt)
glm::ivec4 c = glm::vec4((int)box.x, (int)(height / zoom - box.y - box.w), (int)box.z, (int)box.w) * zoom;
glScissor(c.x, c.y, c.z, c.w);
n->draw();
return true;
}
return false;
};
//glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
#if __IOS__