X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmesa%2Fswrast%2Fs_triangle.h;h=46e23d4208323494bfce322ea5ebb00500e53454;hb=26b8dfc8cadf0f1a8604fc77b226cc7de005f9ca;hp=c0064e8d46ec030b76371bc4c679a1f0f69e42b2;hpb=5e3bc0c2a2bcdf59949410f94c9b705fc1281ce8;p=mesa.git diff --git a/src/mesa/swrast/s_triangle.h b/src/mesa/swrast/s_triangle.h index c0064e8d46e..46e23d42083 100644 --- a/src/mesa/swrast/s_triangle.h +++ b/src/mesa/swrast/s_triangle.h @@ -1,10 +1,9 @@ -/* $Id: s_triangle.h,v 1.4 2000/11/22 07:32:18 joukj Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.1 + * Version: 5.1 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2003 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"), @@ -25,26 +24,27 @@ */ - - - #ifndef S_TRIANGLES_H #define S_TRIANGLES_H -#include "mtypes.h" #include "swrast.h" -GLboolean gl_cull_triangle( GLcontext *ctx, - const SWvertex *v0, - const SWvertex *v1, - const SWvertex *v2); +extern GLboolean +_swrast_culltriangle( struct gl_context *ctx, + const SWvertex *v0, + const SWvertex *v1, + const SWvertex *v2); +extern void +_swrast_choose_triangle( struct gl_context *ctx ); -void -_swrast_choose_triangle( GLcontext *ctx ); +extern void +_swrast_add_spec_terms_triangle( struct gl_context *ctx, + const SWvertex *v0, + const SWvertex *v1, + const SWvertex *v2 ); #endif -