diff options
author | Zack Rusin <[email protected]> | 2008-09-21 18:32:09 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2008-09-21 19:19:03 -0400 |
commit | e61793a7c01588f2e6235f1271af4c58fa8adad4 (patch) | |
tree | 12c1ce637b5f37bfcbd47dff6686a29f61789d0c /src/mesa | |
parent | 90f1677fe6b6a016d38e89d1ebb23ce255f17b74 (diff) |
gallium: cleanup the after merge framebuffer update code
adjust it and make it behave like it used to
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_atom_framebuffer.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/mesa/state_tracker/st_atom_framebuffer.c b/src/mesa/state_tracker/st_atom_framebuffer.c index c07ed2944a0..b4f42c6f93f 100644 --- a/src/mesa/state_tracker/st_atom_framebuffer.c +++ b/src/mesa/state_tracker/st_atom_framebuffer.c @@ -144,22 +144,13 @@ update_framebuffer_state( struct st_context *st ) cso_set_framebuffer(st->cso_context, framebuffer); -#if 0 - if (fb->_ColorDrawBufferMask[0] & BUFFER_BIT_FRONT_LEFT) { + if (fb->_ColorDrawBufferIndexes[0] == BUFFER_FRONT_LEFT) { if (st->frontbuffer_status == FRONT_STATUS_COPY_OF_BACK) { /* XXX copy back buf to front? */ } /* we're assuming we'll really draw to the front buffer */ st->frontbuffer_status = FRONT_STATUS_DIRTY; } -#else -#if !defined(PIPE_OS_WINDOWS) -#warning "fix me" -#endif - if (fb->_ColorDrawBufferIndexes[0] == BUFFER_FRONT_LEFT) { - st->frontbuffer_status = FRONT_STATUS_DIRTY; - } -#endif } |