diff options
author | Marek Olsak <maraeo@gmail.com> | 2010-02-10 18:03:46 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-02-10 18:03:53 -0700 |
commit | 69fc3b626427aa06f089c72cea74fac22cd1caba (patch) | |
tree | 9f827a35149de7151dbf98d463e57a44b04bb502 | |
parent | 2d91df141a5f3d7c5337fa9428212bd9dadd8102 (diff) |
fbo: disable dithering
Signed-off-by: Brian Paul <brianp@vmware.com>
-rw-r--r-- | src/glean/tfbo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glean/tfbo.cpp b/src/glean/tfbo.cpp index 126a9cf..8b80ded 100644 --- a/src/glean/tfbo.cpp +++ b/src/glean/tfbo.cpp @@ -84,6 +84,8 @@ FBOTest::setup(void) glDrawBuffer(GL_FRONT); glReadBuffer(GL_FRONT); + glDisable(GL_DITHER); + // compute error tolerances (may need fine-tuning) int bufferBits[5]; |