mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
Merge branch 'mesa_7_5_branch'
This commit is contained in:
commit
cd63e35603
1 changed files with 2 additions and 2 deletions
|
|
@ -309,12 +309,12 @@ radeonFillInModes( __DRIscreenPrivate *psp,
|
||||||
* with a stencil buffer. It will be a sw fallback, but some apps won't
|
* with a stencil buffer. It will be a sw fallback, but some apps won't
|
||||||
* care about that.
|
* care about that.
|
||||||
*/
|
*/
|
||||||
stencil_bits_array[0] = 0;
|
stencil_bits_array[0] = stencil_bits;
|
||||||
stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
|
stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
|
||||||
|
|
||||||
msaa_samples_array[0] = 0;
|
msaa_samples_array[0] = 0;
|
||||||
|
|
||||||
depth_buffer_factor = ((depth_bits != 0) || (stencil_bits != 0)) ? 2 : 1;
|
depth_buffer_factor = (stencil_bits == 0) ? 2 : 1;
|
||||||
back_buffer_factor = (have_back_buffer) ? 2 : 1;
|
back_buffer_factor = (have_back_buffer) ? 2 : 1;
|
||||||
|
|
||||||
if (pixel_bits == 16) {
|
if (pixel_bits == 16) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue