Searched refs:activeUniforms (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_glsl.c1009 GLint maxUniformLen, activeUniforms=0, fakeUniformsCount, i, j; local
1020 diff_api.GetProgramiv(pProgram->hwid, GL_ACTIVE_UNIFORMS, &activeUniforms);
1030 ((GLsizei*)pCurrent)[0] = activeUniforms;
1031 fakeUniformsCount = activeUniforms;
1034 crDebug("crStateGLSLProgramCacheUniforms: %i active uniforms", activeUniforms);
1036 if (activeUniforms>0)
1051 for (i=0; i<activeUniforms; ++i)
1102 if (fakeUniformsCount!=activeUniforms)
H A Ddump.cpp928 GLint maxUniformLen = 0, activeUniforms = 0, i, j, uniformsCount = 0; local
933 pRec->pDispatch->GetProgramiv(hwid, GL_ACTIVE_UNIFORMS, &activeUniforms);
937 if (activeUniforms)
939 crWarning("activeUniforms (%d), while maxUniformLen is zero", activeUniforms);
940 activeUniforms = 0;
944 if (activeUniforms>0)
955 for (i=0; i<activeUniforms; ++i)
960 Assert(uniformsCount>=activeUniforms);
962 if (activeUniforms>
[all...]
H A Dstate_snapshot.c1130 GLint maxUniformLen, activeUniforms=0, uniformsCount=0, i, j; local
1159 diff_api.GetProgramiv(pProgram->hwid, GL_ACTIVE_UNIFORMS, &activeUniforms);
1163 if (activeUniforms)
1165 crWarning("activeUniforms (%d), while maxUniformLen is zero", activeUniforms);
1166 activeUniforms = 0;
1170 if (activeUniforms>0)
1181 for (i=0; i<activeUniforms; ++i)
1186 CRASSERT(uniformsCount>=activeUniforms);
1191 if (activeUniforms>
[all...]

Completed in 52 milliseconds