1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
| #ifndef R300_PUBLIC_H
| #define R300_PUBLIC_H
|
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| struct radeon_winsys;
| struct pipe_screen_config;
|
| struct pipe_screen* r300_screen_create(struct radeon_winsys *rws,
| const struct pipe_screen_config *config);
|
| #ifdef __cplusplus
| } // extern "C"
| #endif
|
| #endif
|
|