Bug 4734 - Q3UI: Stencil shadows do not work after changing video settings
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Video
Version: GIT MASTER
Hardware: PC Linux
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2010-08-28 12:41 EDT by Zack Middleton
Modified: 2011-03-07 18:07:48 EST
1 user (show)

See Also:


Attachments
Set r_stencilbits to its default value. (573 bytes, patch)
2011-02-09 23:47 EST, Zack Middleton

Description Zack Middleton 2010-08-28 12:41:45 EDT
On my GNU/Linux computer with integrated NVidia graphics, r_stencilbits must be set to 8 to use stencil shadows (cg_shadows 2). r_stencilbits's default value is 8, but q3_ui sets it to 0 when the video mode is changed.

In GraphicsOptions_ApplyChanges (q3_ui/ui_video.c), r_colorbits, r_depthbits, and r_stencilbits are set to 0.

In GLimp_SetMode (sdl/sdl_glimp.c), there are checks to see if r_colorbits or r_depthbits are 0, so a default value can be used. There is  no default value for r_stencilbits.

Originally r_stencilbits was only set to 0 if colordepth was "Default" or "16 Bit", not when it was "32 Bit".
See http://svn.icculus.org/quake3/trunk/code/q3_ui/ui_video.c?r1=390&r2=1161

Setting r_stencilbits to 8 or simply removing setting r_stencilbits to 0 fixes the problem. I am unsure of the proper solution.
Comment 1 Zack Middleton 2011-02-09 23:47:38 EST
Created attachment 2589 [details]
Set r_stencilbits to its default value.

Set r_stencilbits to its default value, like is done to r_colorbits and r_depthbits, when user changes video mode in q3_ui.
Comment 2 Thilo Schulz 2011-03-07 18:07:48 EST
Fixed in r1913