summaryrefslogtreecommitdiff
path: root/src/mesa/swrast_setup/swrast_setup.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-11-10 17:45:15 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-11-10 17:45:15 +0000
commitba41b8afb1b40b967cf5c0e604bbf09793eb8fee (patch)
tree4d5538cc387e176ad639ce00e7c733ff6bf58143 /src/mesa/swrast_setup/swrast_setup.h
parent6c4268204b0e62218c53f95a7e1c53214e5fc4d7 (diff)
minor changes to silence compiler warnings
Diffstat (limited to 'src/mesa/swrast_setup/swrast_setup.h')
-rw-r--r--src/mesa/swrast_setup/swrast_setup.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mesa/swrast_setup/swrast_setup.h b/src/mesa/swrast_setup/swrast_setup.h
index d9b253af9d..aa32f06f24 100644
--- a/src/mesa/swrast_setup/swrast_setup.h
+++ b/src/mesa/swrast_setup/swrast_setup.h
@@ -31,39 +31,39 @@
#ifndef SWRAST_SETUP_H
#define SWRAST_SETUP_H
-GLboolean
+extern GLboolean
_swsetup_CreateContext( GLcontext *ctx );
-void
+extern void
_swsetup_DestroyContext( GLcontext *ctx );
-GLboolean
+extern void
_swsetup_RegisterVB( struct vertex_buffer *VB );
-void
+extern void
_swsetup_UnregisterVB( struct vertex_buffer *VB );
-void
+extern void
_swsetup_InvalidateState( GLcontext *ctx, GLuint new_state );
-void
+extern void
_swsetup_RasterSetup( struct vertex_buffer *VB,
GLuint start, GLuint end );
-void
+extern void
_swsetup_Quad( GLcontext *ctx, GLuint v0, GLuint v1,
GLuint v2, GLuint v3, GLuint pv );
-void
+extern void
_swsetup_Triangle( GLcontext *ctx, GLuint v0, GLuint v1,
GLuint v2, GLuint pv );
-void
+extern void
_swsetup_Line( GLcontext *ctx, GLuint v0, GLuint v1, GLuint pv );
-void
+extern void
_swsetup_Points( GLcontext *ctx, GLuint first, GLuint last );