xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/svga/svgadump/svga_shader_dump.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright (c) 2008-2024 Broadcom. All Rights Reserved.
3  * The term “Broadcom” refers to Broadcom Inc.
4  * and/or its subsidiaries.
5  * SPDX-License-Identifier: MIT
6  */
7 
8 /**
9  * @file
10  * SVGA Shader Dump Facilities
11  *
12  * @author Michal Krol <[email protected]>
13  */
14 
15 #ifndef SVGA_SHADER_DUMP_H
16 #define SVGA_SHADER_DUMP_H
17 
18 void
19 svga_shader_dump(
20    const unsigned *assem,
21    unsigned dwords,
22    unsigned do_binary );
23 
24 #endif /* SVGA_SHADER_DUMP_H */
25