meta: remove F suffix from _mesa_Ortho() params

_mesa_Ortho() takes GLdoubles.
This commit is contained in:
Brian Paul
2010-01-06 18:22:05 -07:00
parent 73bd400016
commit ef7eb62423
+3 -3
View File
@@ -500,9 +500,9 @@ _mesa_meta_begin(GLcontext *ctx, GLbitfield state)
_mesa_LoadIdentity();
_mesa_MatrixMode(GL_PROJECTION);
_mesa_LoadIdentity();
_mesa_Ortho(0.0F, ctx->DrawBuffer->Width,
0.0F, ctx->DrawBuffer->Height,
-1.0F, 1.0F);
_mesa_Ortho(0.0, ctx->DrawBuffer->Width,
0.0, ctx->DrawBuffer->Height,
-1.0, 1.0);
save->ClipPlanesEnabled = ctx->Transform.ClipPlanesEnabled;
if (ctx->Transform.ClipPlanesEnabled) {
GLuint i;