util: Rename PIPE_DEBUG_TYPE to UTIL_DEBUG_TYPE

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15657>
This commit is contained in:
Yonggang Luo
2022-03-31 04:23:56 +08:00
committed by Marge Bot
parent ab225a1e36
commit b2ece67f11
6 changed files with 20 additions and 20 deletions

View File

@@ -430,13 +430,13 @@ u_uintN_max(unsigned bit_size)
*/
enum util_debug_type
{
PIPE_DEBUG_TYPE_OUT_OF_MEMORY = 1,
PIPE_DEBUG_TYPE_ERROR,
PIPE_DEBUG_TYPE_SHADER_INFO,
PIPE_DEBUG_TYPE_PERF_INFO,
PIPE_DEBUG_TYPE_INFO,
PIPE_DEBUG_TYPE_FALLBACK,
PIPE_DEBUG_TYPE_CONFORMANCE,
UTIL_DEBUG_TYPE_OUT_OF_MEMORY = 1,
UTIL_DEBUG_TYPE_ERROR,
UTIL_DEBUG_TYPE_SHADER_INFO,
UTIL_DEBUG_TYPE_PERF_INFO,
UTIL_DEBUG_TYPE_INFO,
UTIL_DEBUG_TYPE_FALLBACK,
UTIL_DEBUG_TYPE_CONFORMANCE,
};
#if !defined(alignof) && !defined(__cplusplus)