diff options
Diffstat (limited to 'src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c')
-rw-r--r-- | src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c b/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c new file mode 100644 index 00000000..054f1c4b --- /dev/null +++ b/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c @@ -0,0 +1,50 @@ +/* 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)n; (void)fences; +} + + +void APIENTRY crStateDeleteFencesNV(GLsizei n, const GLuint *fences) +{ + (void)n; (void)fences; +} + +void APIENTRY crStateSetFenceNV(GLuint fence, GLenum condition) +{ + (void)fence; (void)condition; +} + +GLboolean APIENTRY crStateTestFenceNV(GLuint fence) +{ + (void)fence; + return GL_FALSE; +} + +void APIENTRY crStateFinishFenceNV(GLuint fence) +{ + (void)fence; +} + +GLboolean APIENTRY crStateIsFenceNV(GLuint fence) +{ + (void)fence; + return GL_FALSE; +} + +void APIENTRY crStateGetFenceivNV(GLuint fence, GLenum pname, GLint *params) +{ + (void)fence; (void)pname; (void)params; +} + |