turnip: Always enable TU_DEBUG=startup on debug drivers.

For Android, it's hard to inject environment variables for testing, and I
figure if you've got a debug driver then you'd love to see about driver
init failures anyway.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7014>
This commit is contained in:
Eric Anholt 2020-10-05 14:31:26 -07:00 committed by Marge Bot
parent a4d9a9d11c
commit 50f25da2b5
2 changed files with 10 additions and 1 deletions

View File

@ -256,6 +256,14 @@ tu_CreateInstance(const VkInstanceCreateInfo *pCreateInfo,
instance->debug_flags =
parse_debug_string(getenv("TU_DEBUG"), tu_debug_options);
#ifdef DEBUG
/* Enable startup debugging by default on debug drivers. You almost always
* want to see your startup failures in that case, and it's hard to set
* this env var on android.
*/
instance->debug_flags |= TU_DEBUG_STARTUP;
#endif
if (instance->debug_flags & TU_DEBUG_STARTUP)
mesa_logi("Created an instance");

View File

@ -140,7 +140,8 @@ __vk_errorf(struct tu_instance *instance,
#define vk_errorf(instance, error, format, ...) \
__vk_errorf(instance, error, false, __FILE__, __LINE__, format, ##__VA_ARGS__);
/* Prints startup errors if TU_DEBUG=startup is set.
/* Prints startup errors if TU_DEBUG=startup is set or on a debug driver
* build.
*/
#define vk_startup_errorf(instance, error, format, ...) \
__vk_errorf(instance, error, instance->debug_flags & TU_DEBUG_STARTUP, \