am 3ba4f8b8: Merge "opengles emulator: fix bug in glTranslatex"

* commit '3ba4f8b8018846ff167e3f7e4e465d91d6847c19':
  opengles emulator: fix bug in glTranslatex
This commit is contained in:
David Turner
2011-08-10 01:44:16 -07:00
committed by Android Git Automerger

View File

@@ -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) {