mesa: Make condrender.[ch] prototypes match.

GLAPI on windows is more than "extern" -- it includes the --, so the
mismatch between condrender.[ch] prototypes causes "different linkage"
errors on windows.
This commit is contained in:
José Fonseca 2010-01-01 11:20:38 +00:00
parent 97e2c5ac0b
commit 04c7f483b4
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
#include "queryobj.h"
GLAPI void GLAPIENTRY
void GLAPIENTRY
_mesa_BeginConditionalRender(GLuint queryId, GLenum mode)
{
struct gl_query_object *q;
@ -84,7 +84,7 @@ _mesa_BeginConditionalRender(GLuint queryId, GLenum mode)
}
GLAPI void APIENTRY
void APIENTRY
_mesa_EndConditionalRender(void)
{
GET_CURRENT_CONTEXT(ctx);