|
@@ -83,3 +83,23 @@ void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdou
|
|
|
{
|
|
|
g_gl_context->gl_ortho(left, right, bottom, top, nearVal, farVal);
|
|
|
}
|
|
|
+
|
|
|
+void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
|
|
|
+{
|
|
|
+ g_gl_context->gl_rotate(angle, x, y, z);
|
|
|
+}
|
|
|
+
|
|
|
+void glScaled(GLdouble x, GLdouble y, GLdouble z)
|
|
|
+{
|
|
|
+ g_gl_context->gl_scale(x, y, z);
|
|
|
+}
|
|
|
+
|
|
|
+void glScalef(GLfloat x, GLfloat y, GLfloat z)
|
|
|
+{
|
|
|
+ g_gl_context->gl_scale(x, y, z);
|
|
|
+}
|
|
|
+
|
|
|
+void glTranslatef(GLfloat x, GLfloat y, GLfloat z)
|
|
|
+{
|
|
|
+ g_gl_context->gl_translate(x, y, z);
|
|
|
+}
|