xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/r300/r300_public.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 // SPDX-License-Identifier: MIT
2 #ifndef R300_PUBLIC_H
3 #define R300_PUBLIC_H
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 struct radeon_winsys;
10 struct pipe_screen_config;
11 
12 struct pipe_screen* r300_screen_create(struct radeon_winsys *rws,
13                                        const struct pipe_screen_config *config);
14 
15 #ifdef __cplusplus
16 } // extern "C"
17 #endif
18 
19 #endif
20