turnip: add environment variable to disable LRZ

Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5146>
This commit is contained in:
Samuel Iglesias Gonsálvez 2020-05-19 17:08:34 +02:00 committed by Marge Bot
parent e3c7748b2e
commit 138d2928cd
2 changed files with 2 additions and 0 deletions

View File

@ -198,6 +198,7 @@ static const struct debug_control tu_debug_options[] = {
{ "forcebin", TU_DEBUG_FORCEBIN },
{ "noubwc", TU_DEBUG_NOUBWC },
{ "nomultipos", TU_DEBUG_NOMULTIPOS },
{ "nolrz", TU_DEBUG_NOLRZ },
{ NULL, 0 }
};

View File

@ -228,6 +228,7 @@ enum tu_debug_flags
TU_DEBUG_FORCEBIN = 1 << 5,
TU_DEBUG_NOUBWC = 1 << 6,
TU_DEBUG_NOMULTIPOS = 1 << 7,
TU_DEBUG_NOLRZ = 1 << 8,
};
struct tu_instance