mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
r300: move fallback warnings inside fallback debugging
random output is bad
This commit is contained in:
parent
dfecf217fa
commit
f030e2ba17
1 changed files with 2 additions and 1 deletions
|
|
@ -452,7 +452,8 @@ void r300SwitchFallback(GLcontext *ctx, uint32_t bit, GLboolean mode)
|
|||
|
||||
if (mode) {
|
||||
if ((fallback_warn & bit) == 0) {
|
||||
_mesa_fprintf(stderr, "WARNING! Falling back to software for %s\n", getFallbackString(bit));
|
||||
if (RADEON_DEBUG & DEBUG_FALLBACKS)
|
||||
_mesa_fprintf(stderr, "WARNING! Falling back to software for %s\n", getFallbackString(bit));
|
||||
fallback_warn |= bit;
|
||||
}
|
||||
rmesa->fallback |= bit;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue