Last change
on this file since 20975 was 15532, checked in by vboxsync, 16 years ago |
crOpenGL: export to OSE
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
733 bytes
|
Line | |
---|
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 | }
|
---|
16 |
|
---|
17 |
|
---|
18 | void APIENTRY crStateDeleteFencesNV(GLsizei n, const GLuint *fences)
|
---|
19 | {
|
---|
20 | }
|
---|
21 |
|
---|
22 | void APIENTRY crStateSetFenceNV(GLuint fence, GLenum condition)
|
---|
23 | {
|
---|
24 | }
|
---|
25 |
|
---|
26 | GLboolean APIENTRY crStateTestFenceNV(GLuint fence)
|
---|
27 | {
|
---|
28 | return GL_FALSE;
|
---|
29 | }
|
---|
30 |
|
---|
31 | void APIENTRY crStateFinishFenceNV(GLuint fence)
|
---|
32 | {
|
---|
33 | }
|
---|
34 |
|
---|
35 | GLboolean APIENTRY crStateIsFenceNV(GLuint fence)
|
---|
36 | {
|
---|
37 | return GL_FALSE;
|
---|
38 | }
|
---|
39 |
|
---|
40 | void APIENTRY crStateGetFenceivNV(GLuint fence, GLenum pname, GLint *params)
|
---|
41 | {
|
---|
42 | }
|
---|
43 |
|
---|
44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.