Files
mesa/src/intel/tools/aubinator_error_decode_lib.h
José Roberto de Souza 94deb24e2b intel/tools/aubinator_error_decode: Move definition of option_color to header
Xe parser will also need to use the option_color parameter.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28722>
2024-04-24 17:07:50 +00:00

22 lines
464 B
C

/*
* Copyright 2024 Intel Corporation
* SPDX-License-Identifier: MIT
*/
#pragma once
#include "intel/common/intel_engine.h"
enum decode_color {
DECODE_COLOR_AUTO,
DECODE_COLOR_ALWAYS,
DECODE_COLOR_NEVER
};
int ring_name_to_class(const char *ring_name, enum intel_engine_class *class);
void
dump_shader_binary(void *user_data, const char *short_name,
uint64_t address, const void *data,
unsigned data_length);