made gl_make_fog_coords() static

This commit is contained in:
Brian Paul 2000-03-07 17:40:34 +00:00
parent b3f16c4350
commit 4f92969899
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: fog.c,v 1.7 2000/02/25 03:55:40 keithw Exp $ */
/* $Id: fog.c,v 1.8 2000/03/07 17:40:34 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -214,7 +214,8 @@ static void check_fog_coords( GLcontext *ctx, struct gl_pipeline_stage *d )
}
}
void gl_make_fog_coords( struct vertex_buffer *VB )
static void gl_make_fog_coords( struct vertex_buffer *VB )
{
GLcontext *ctx = VB->ctx;