Changeset 51200 in vbox for trunk/src/VBox/GuestHost/OpenGL/include
- Timestamp:
- May 6, 2014 5:21:16 PM (11 years ago)
- Location:
- trunk/src/VBox/GuestHost/OpenGL/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_protocol.h
r50973 r51200 38 38 */ 39 39 #define CR_VBOX_CAP_CMDBLOCKS 0x00000004 40 /* GetAttribsLocations support */ 41 #define CR_VBOX_CAP_GETATTRIBSLOCATIONS 0x00000008 42 43 #define CR_VBOX_CAPS_ALL 0x0000000f 40 44 41 45 -
trunk/src/VBox/GuestHost/OpenGL/include/state/cr_glsl.h
r50041 r51200 72 72 GLuint cUniforms; 73 73 #ifdef IN_GUEST 74 CRGLSLAttrib *pAttribs; 75 GLuint cAttribs; 74 76 GLboolean bUniformsSynced; /*uniforms info is updated since last link program call.*/ 77 GLboolean bAttribsSynced; /*attribs info is updated since last link program call.*/ 75 78 #endif 76 79 } CRGLSLProgram; … … 103 106 104 107 DECLEXPORT(GLboolean) STATE_APIENTRY crStateIsProgramUniformsCached(GLuint program); 108 DECLEXPORT(GLboolean) STATE_APIENTRY crStateIsProgramAttribsCached(GLuint program); 105 109 106 110 #ifdef IN_GUEST 107 111 DECLEXPORT(void) STATE_APIENTRY crStateGLSLProgramCacheUniforms(GLuint program, GLsizei cbData, GLvoid *pData); 112 DECLEXPORT(void) STATE_APIENTRY crStateGLSLProgramCacheAttribs(GLuint program, GLsizei cbData, GLvoid *pData); 108 113 #else 109 114 DECLEXPORT(void) STATE_APIENTRY crStateGLSLProgramCacheUniforms(GLuint program, GLsizei maxcbData, GLsizei *cbData, GLvoid *pData); 115 DECLEXPORT(void) STATE_APIENTRY crStateGLSLProgramCacheAttribs(GLuint program, GLsizei maxcbData, GLsizei *cbData, GLvoid *pData); 110 116 #endif 111 117
Note:
See TracChangeset
for help on using the changeset viewer.