fix issue with i915tex advertising visuals it can't support

This may not be the proper way to fix this but it does work easily.
This commit is contained in:
Dave Airlie 2006-12-31 10:01:17 +11:00
parent 3943d7f8b1
commit b6becfae10
1 changed files with 3 additions and 0 deletions

View File

@ -737,6 +737,9 @@ intelFillInModes(unsigned pixel_bits, unsigned depth_bits,
*/
stencil_bits_array[0] = 0;
stencil_bits_array[1] = 0;
if (depth_bits == 24)
stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
stencil_bits_array[2] = (stencil_bits == 0) ? 8 : stencil_bits;
depth_buffer_factor = ((depth_bits != 0) || (stencil_bits != 0)) ? 3 : 1;