1 /* 2 * Copyright (c) 2009-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 #ifndef SVGA_DUMP_H_ 9 #define SVGA_DUMP_H_ 10 11 #include "util/compiler.h" 12 13 void 14 svga_dump_command(uint32_t cmd_id, const void *data, uint32_t size); 15 16 void 17 svga_dump_commands(const void *commands, uint32_t size); 18 19 #endif /* SVGA_DUMP_H_ */ 20