b143823727
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>
21 lines
487 B
C
21 lines
487 B
C
/*
|
|
* Copyright 2024 Intel Corporation
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "aubinator_error_decode_lib.h"
|
|
#include "decoder/intel_decoder.h"
|
|
|
|
void
|
|
read_xe_data_file(FILE *file,
|
|
enum intel_batch_decode_flags batch_flags,
|
|
const char *spec_xml_path,
|
|
bool option_dump_kernels,
|
|
bool option_print_all_bb,
|
|
enum decode_color option_color);
|