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