From: havoc Date: Sun, 27 May 2012 23:23:12 +0000 (+0000) Subject: added note about multi-gpu on the descriptions of r_motionblur and X-Git-Tag: xonotic-v0.7.0~128 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8008ea1626c5a2842d710e9c50faf6a6f8bb2c0e;p=xonotic%2Fdarkplaces.git added note about multi-gpu on the descriptions of r_motionblur and r_damageblur cvars git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11824 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=19040fd4f9f1cb2445079875defb091cb0d4bdfc --- diff --git a/gl_rmain.c b/gl_rmain.c index 62222a73..bb97703e 100644 --- a/gl_rmain.c +++ b/gl_rmain.c @@ -50,8 +50,8 @@ static qboolean r_savedds; // r_refdef_t r_refdef; -cvar_t r_motionblur = {CVAR_SAVE, "r_motionblur", "0", "screen motionblur - value represents intensity, somewhere around 0.5 recommended"}; -cvar_t r_damageblur = {CVAR_SAVE, "r_damageblur", "0", "screen motionblur based on damage - value represents intensity, somewhere around 0.5 recommended"}; +cvar_t r_motionblur = {CVAR_SAVE, "r_motionblur", "0", "screen motionblur - value represents intensity, somewhere around 0.5 recommended - NOTE: bad performance on multi-gpu!"}; +cvar_t r_damageblur = {CVAR_SAVE, "r_damageblur", "0", "screen motionblur based on damage - value represents intensity, somewhere around 0.5 recommended - NOTE: bad performance on multi-gpu!"}; cvar_t r_motionblur_averaging = {CVAR_SAVE, "r_motionblur_averaging", "0.1", "sliding average reaction time for velocity (higher = slower adaption to change)"}; cvar_t r_motionblur_randomize = {CVAR_SAVE, "r_motionblur_randomize", "0.1", "randomizing coefficient to workaround ghosting"}; cvar_t r_motionblur_minblur = {CVAR_SAVE, "r_motionblur_minblur", "0.5", "factor of blur to apply at all times (always have this amount of blur no matter what the other factors are)"};