From fa8881d18d80a23e5eef3bbfaa29f02d1a6ca6ac Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 28 Mar 2006 15:16:16 +0000 Subject: [PATCH] auto-flip false by default --- panda/src/display/config_display.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/panda/src/display/config_display.cxx b/panda/src/display/config_display.cxx index aa81653d24..da93cb229c 100644 --- a/panda/src/display/config_display.cxx +++ b/panda/src/display/config_display.cxx @@ -62,11 +62,14 @@ ConfigVariableString threading_model "EXPERIMENTAL and incomplete, do not use this!")); ConfigVariableBool auto_flip -("auto-flip", true, +("auto-flip", false, PRC_DESC("This indicates the initial setting of the auto-flip flag. Set it " - "true (the default) to cause render_frame() to flip all the windows " + "true to cause render_frame() to flip all the windows " "before it returns (in single-threaded mode only), or false to wait " - "until an explicit call to flip_frame() or the next render_frame().")); + "until an explicit call to flip_frame() or the next " + "render_frame(). Setting it true gets more immediate response " + "time, while setting it false can get a better frame rate as more " + "is achieved in parallel with the graphics card.")); ConfigVariableBool yield_timeslice ("yield-timeslice", false,