1 #include "state_tracker/graw.h"
2
3
4
5
6 struct pipe_screen *
graw_create_window_and_screen(int x,int y,unsigned width,unsigned height,enum pipe_format format,void ** handle)7 graw_create_window_and_screen( int x,
8 int y,
9 unsigned width,
10 unsigned height,
11 enum pipe_format format,
12 void **handle)
13 {
14 return NULL;
15 }
16
17
18
19 void
graw_set_display_func(void (* draw)(void))20 graw_set_display_func( void (*draw)( void ) )
21 {
22 }
23
24
25 void
graw_main_loop(void)26 graw_main_loop( void )
27 {
28 }
29