mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-30 13:40:23 +01:00
intel: Put CopyTexImage fallback under DEBUG_FALLBACKS not DEBUG_TEXTURE.
This commit is contained in:
parent
6e0f8b174d
commit
bdc8ac4426
1 changed files with 3 additions and 1 deletions
|
|
@ -98,7 +98,9 @@ do_copy_texsubimage(struct intel_context *intel,
|
|||
get_teximage_source(intel, internalFormat);
|
||||
|
||||
if (!intelImage->mt || !src) {
|
||||
DBG("%s fail %p %p\n", __FUNCTION__, intelImage->mt, src);
|
||||
if (INTEL_DEBUG & DEBUG_FALLBACKS)
|
||||
fprintf(stderr, "%s fail %p %p\n",
|
||||
__FUNCTION__, intelImage->mt, src);
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue