VirtualBox

source: vbox/trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c@ 78493

Last change on this file since 78493 was 78375, checked in by vboxsync, 6 years ago

Additions/common/crOpengl,GuestHost/OpenGL,HostServices/SharedOpenGL: Eliminate all global variables from the state tracker library (state_tracker) in preparation of the SPU DLL merging, bugref:9435

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 1.1 KB
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
13void APIENTRY crStateGenFencesNV(PCRStateTracker pState, GLsizei n, GLuint *fences)
14{
15 RT_NOREF(pState, n, fences);
16}
17
18
19void APIENTRY crStateDeleteFencesNV(PCRStateTracker pState, GLsizei n, const GLuint *fences)
20{
21 RT_NOREF(pState, n, fences);
22}
23
24void APIENTRY crStateSetFenceNV(PCRStateTracker pState, GLuint fence, GLenum condition)
25{
26 RT_NOREF(pState, fence, condition);
27}
28
29GLboolean APIENTRY crStateTestFenceNV(PCRStateTracker pState, GLuint fence)
30{
31 RT_NOREF(pState, fence);
32 return GL_FALSE;
33}
34
35void APIENTRY crStateFinishFenceNV(PCRStateTracker pState, GLuint fence)
36{
37 RT_NOREF(pState, fence);
38}
39
40GLboolean APIENTRY crStateIsFenceNV(PCRStateTracker pState, GLuint fence)
41{
42 RT_NOREF(pState, fence);
43 return GL_FALSE;
44}
45
46void APIENTRY crStateGetFenceivNV(PCRStateTracker pState, GLuint fence, GLenum pname, GLint *params)
47{
48 RT_NOREF(pState, fence, pname, params);
49}
50
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette