Skip to content

Commit

Permalink
Revert "Disable triple-buffering by default"
Browse files Browse the repository at this point in the history
This reverts commit a1f0b31.

We can't hit full fps with 2-buffer
  • Loading branch information
freemangordon committed Dec 26, 2021
1 parent 55f599c commit 9406d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omap_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ OMAPPreInit(ScrnInfoPtr pScrn, int flags)
omapDebug = xf86ReturnOptValBool(pOMAP->pOptionInfo, OPTION_DEBUG, FALSE);

pOMAP->dri = xf86ReturnOptValBool(pOMAP->pOptionInfo, OPTION_DRI, TRUE);
pOMAP->TripleBuffer = xf86ReturnOptValBool(pOMAP->pOptionInfo, OPTION_TRIPLE_BUFFER, FALSE);
pOMAP->TripleBuffer = xf86ReturnOptValBool(pOMAP->pOptionInfo, OPTION_TRIPLE_BUFFER, TRUE);

/* Determine if user wants to disable hw mouse cursor: */
pOMAP->HWCursor = xf86ReturnOptValBool(pOMAP->pOptionInfo,
Expand Down

0 comments on commit 9406d86

Please sign in to comment.