TINYGL: renamed glIssueDrawCall to tglIssueDrawCall.

This commit is contained in:
Stefano Musumeci 2014-08-07 17:38:11 +02:00
parent 5ae16bd1fe
commit 75ea6893ef
5 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@
namespace TinyGL {
void glIssueDrawCall(Graphics::DrawCall *drawCall) {
void tglIssueDrawCall(Graphics::DrawCall *drawCall) {
TinyGL::GLContext *c = TinyGL::gl_get_context();
c->_drawCallsQueue.push_back(drawCall);
}