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