xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/svga/svga_resource.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 #ifndef SVGA_RESOURCE_H
9 #define SVGA_RESOURCE_H
10 
11 
12 #include "util/u_debug.h"
13 
14 struct svga_context;
15 struct svga_screen;
16 
17 
18 void svga_init_screen_resource_functions(struct svga_screen *is);
19 void svga_init_resource_functions(struct svga_context *svga );
20 
21 
22 #endif /* SVGA_RESOURCE_H */
23