blob: 9dce5e9f94b3ef2e63fc122b4c7b78234be96822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "state.h"
#include "state_internals.h"
#include "state/cr_statetypes.h"
void APIENTRY crStateGenFencesNV(GLsizei n, GLuint *fences)
{
}
void APIENTRY crStateDeleteFencesNV(GLsizei n, const GLuint *fences)
{
}
void APIENTRY crStateSetFenceNV(GLuint fence, GLenum condition)
{
}
GLboolean APIENTRY crStateTestFenceNV(GLuint fence)
{
return GL_FALSE;
}
void APIENTRY crStateFinishFenceNV(GLuint fence)
{
}
GLboolean APIENTRY crStateIsFenceNV(GLuint fence)
{
return GL_FALSE;
}
void APIENTRY crStateGetFenceivNV(GLuint fence, GLenum pname, GLint *params)
{
}
|