summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-05-12 22:47:15 +0100
committerJakob Bornecrantz <jakob@vmware.com>2010-05-12 22:47:15 +0100
commit0f9b4969167c62fcac70f98875828150ba72dd67 (patch)
tree16ec490b8110dc10c35d6ae3f32edb2e9ed070a0 /src/gallium/include
parent9f7f711020346b4ece9a46a0155339a808771048 (diff)
graw: Make functions public
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/state_tracker/graw.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/include/state_tracker/graw.h b/src/gallium/include/state_tracker/graw.h
index a58e18e473..385e4d7718 100644
--- a/src/gallium/include/state_tracker/graw.h
+++ b/src/gallium/include/state_tracker/graw.h
@@ -18,19 +18,19 @@
struct pipe_screen;
-struct pipe_screen *graw_init( void );
+PUBLIC struct pipe_screen *graw_init( void );
/* Returns a handle to be used with flush_frontbuffer()/present().
*
* Query format support with screen::is_format_supported and usage
* XXX.
*/
-void *graw_create_window( int x,
- int y,
- unsigned width,
- unsigned height,
- enum pipe_format format );
+PUBLIC void *graw_create_window( int x,
+ int y,
+ unsigned width,
+ unsigned height,
+ enum pipe_format format );
-void graw_destroy_window( void *handle );
+PUBLIC void graw_destroy_window( void *handle );
#endif