summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/fog.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-02 22:21:39 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-02 22:21:39 +0000
commit5829f0c960f9ccceecd2a4a1c1ce300a71ef4a0f (patch)
treee133f5b0490c51bc30a3edb4bc8d1100a53d9a0f /src/mesa/main/fog.h
parent4bad6744d20b4efb713e785015dc0abb33cb929c (diff)
downloadexternal_mesa3d-5829f0c960f9ccceecd2a4a1c1ce300a71ef4a0f.zip
external_mesa3d-5829f0c960f9ccceecd2a4a1c1ce300a71ef4a0f.tar.gz
external_mesa3d-5829f0c960f9ccceecd2a4a1c1ce300a71ef4a0f.tar.bz2
changed _gl prefix to _mesa_ on fog functions
Diffstat (limited to 'src/mesa/main/fog.h')
-rw-r--r--src/mesa/main/fog.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/src/mesa/main/fog.h b/src/mesa/main/fog.h
index 0bb4d9d..92a2bc5 100644
--- a/src/mesa/main/fog.h
+++ b/src/mesa/main/fog.h
@@ -1,10 +1,10 @@
-/* $Id: fog.h,v 1.2 1999/11/11 01:22:26 brianp Exp $ */
+/* $Id: fog.h,v 1.3 2000/02/02 22:21:39 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -49,16 +49,21 @@ _mesa_Fogiv(GLenum pname, const GLint *params );
-extern void gl_fog_vertices( struct vertex_buffer *VB );
+extern void
+_mesa_fog_vertices( struct vertex_buffer *VB );
-extern void gl_fog_rgba_pixels( const GLcontext *ctx,
- GLuint n, const GLdepth z[],
- GLubyte rgba[][4] );
+extern void
+_mesa_fog_rgba_pixels( const GLcontext *ctx,
+ GLuint n, const GLdepth z[],
+ GLubyte rgba[][4] );
-extern void gl_fog_ci_pixels( const GLcontext *ctx,
- GLuint n, const GLdepth z[], GLuint indx[] );
+extern void
+_mesa_fog_ci_pixels( const GLcontext *ctx,
+ GLuint n, const GLdepth z[], GLuint indx[] );
-extern void gl_init_fog( void );
+extern void
+_mesa_init_fog( void );
+
#endif