Changeset 53088 in vbox
- Timestamp:
- Oct 17, 2014 2:50:07 PM (10 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_glsl.c
r51200 r53088 859 859 cbRead = sizeof(GLsizei); 860 860 861 crDebug("crStateGLSLProgramCacheUniforms: %i active uniforms", pProgram->cUniforms);861 //crDebug("crStateGLSLProgramCacheUniforms: %i active uniforms", pProgram->cUniforms); 862 862 863 863 if (pProgram->cUniforms) … … 896 896 pCurrent += cbName; 897 897 898 crDebug("crStateGLSLProgramCacheUniforms: uniform[%i]=%d, %s", i, pProgram->pUniforms[i].location, pProgram->pUniforms[i].name);898 //crDebug("crStateGLSLProgramCacheUniforms: uniform[%i]=%d, %s", i, pProgram->pUniforms[i].location, pProgram->pUniforms[i].name); 899 899 } 900 900 … … 979 979 CRASSERT(cbRead==cbData); 980 980 } 981 #else 981 #else /* IN_GUEST */ 982 982 static GLboolean crStateGLSLProgramCacheOneUniform(GLuint location, GLsizei cbName, GLchar *pName, 983 983 char **pCurrent, GLsizei *pcbWritten, GLsizei maxcbData) … … 991 991 } 992 992 993 crDebug("crStateGLSLProgramCacheUniforms: uniform[%i]=%s.", location, pName);993 //crDebug("crStateGLSLProgramCacheUniforms: uniform[%i]=%s.", location, pName); 994 994 995 995 ((GLint*)*pCurrent)[0] = location; -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_misc.c
r52430 r53088 1972 1972 1973 1973 gl->GetIntegerv(GL_CURRENT_PROGRAM, &pid); 1974 crDebug("pid %i, state: id %i, hwid %i", pid, ctx->glsl.activeProgram->id, ctx->glsl.activeProgram->hwid);1974 //crDebug("pid %i, state: id %i, hwid %i", pid, ctx->glsl.activeProgram->id, ctx->glsl.activeProgram->hwid); 1975 1975 if (pid != ctx->glsl.activeProgram->hwid) 1976 1976 {
Note:
See TracChangeset
for help on using the changeset viewer.