VirtualBox

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

最後變更 在這個檔案從80272是 78375,由 vboxsync 提交於 6 年 前

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

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id Revision
檔案大小: 1.1 KB
 
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
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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