mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
Remove earlier workaround
This commit is contained in:
parent
da8a7e15a6
commit
df7cbe873e
1 changed files with 2 additions and 1 deletions
|
|
@ -57,6 +57,7 @@ radeonUpdatePageFlipping( radeonContextPtr rmesa )
|
|||
return;
|
||||
|
||||
rmesa->doPageFlip = rmesa->sarea->pfAllowPageFlip;
|
||||
/* rmesa->doPageFlip = 0; */
|
||||
|
||||
use_back = (rmesa->glCtx->Color._DrawDestMask == BACK_LEFT_BIT);
|
||||
use_back ^= (rmesa->sarea->pfCurrentPage == 1);
|
||||
|
|
@ -107,9 +108,9 @@ void radeonGetLock( radeonContextPtr rmesa, GLuint flags )
|
|||
*/
|
||||
DRI_VALIDATE_DRAWABLE_INFO( sPriv, dPriv );
|
||||
|
||||
if ( rmesa->lastStamp != dPriv->lastStamp ) {
|
||||
radeonUpdatePageFlipping( rmesa );
|
||||
|
||||
if ( rmesa->lastStamp != dPriv->lastStamp ) {
|
||||
if (rmesa->glCtx->Color._DrawDestMask == BACK_LEFT_BIT)
|
||||
radeonSetCliprects( rmesa, GL_BACK_LEFT );
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue