Drop GLcontext typedef and use struct gl_context instead

This commit is contained in:
Kristian Høgsberg
2010-10-12 12:26:10 -04:00
parent 31aca27c08
commit f9995b3075
789 changed files with 5694 additions and 5697 deletions

View File

@@ -1448,7 +1448,7 @@ do { \
* swrast fallback.
*/
static swrast_tri_func
get_triangle_func(GLcontext *ctx)
get_triangle_func(struct gl_context *ctx)
{
#if CHAN_BITS == 8
SWcontext *swrast = SWRAST_CONTEXT(ctx);
@@ -1644,7 +1644,7 @@ get_triangle_func(GLcontext *ctx)
* of our internal tri functions, otherwise fall back to the
* standard swrast functions.
*/
void xmesa_choose_triangle( GLcontext *ctx )
void xmesa_choose_triangle( struct gl_context *ctx )
{
SWcontext *swrast = SWRAST_CONTEXT(ctx);