diff options
author | Kenneth Graunke <[email protected]> | 2012-11-29 13:47:13 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-11-29 13:49:07 -0800 |
commit | 53ba40c1567125e9462289be01f5c137701f4f5d (patch) | |
tree | c710f72036f0de66efe5436f83267ae6122d10b3 /src/mesa | |
parent | 3fcb3fbf22063cabfec04700dcf5aa4a2f30760f (diff) |
Revert "meta: Don't try to glOrtho when the draw buffer isn't initialized."
This reverts commit 9947470655bbf8f4a9c98fe6d93ff5c3486f1124.
Apparently it caused a lot of Piglit regressions.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/common/meta.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index e4ff5c9004f..08bd899f861 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -684,11 +684,9 @@ _mesa_meta_begin(struct gl_context *ctx, GLbitfield state) _mesa_LoadIdentity(); _mesa_MatrixMode(GL_PROJECTION); _mesa_LoadIdentity(); - if (ctx->DrawBuffer->Initialized) { - _mesa_Ortho(0.0, ctx->DrawBuffer->Width, - 0.0, ctx->DrawBuffer->Height, - -1.0, 1.0); - } + _mesa_Ortho(0.0, ctx->DrawBuffer->Width, + 0.0, ctx->DrawBuffer->Height, + -1.0, 1.0); } if (state & MESA_META_CLIP) { |