* commit '705e64ef2a8e57e98e449f6115ba9138d0c2b848': opengles emulator: fix bug in glTranslatex
This commit is contained in:
@@ -1631,7 +1631,7 @@ GL_API void GL_APIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z) {
|
||||
|
||||
GL_API void GL_APIENTRY glTranslatex( GLfixed x, GLfixed y, GLfixed z) {
|
||||
GET_CTX()
|
||||
ctx->dispatcher().glTranslatef(x,y,z);
|
||||
ctx->dispatcher().glTranslatef(X2F(x),X2F(y),X2F(z));
|
||||
}
|
||||
|
||||
GL_API void GL_APIENTRY glVertexPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) {
|
||||
|
||||
Reference in New Issue
Block a user