From 01eaf6549b08f78d8a530778151fcd9c7b5c0c8a Mon Sep 17 00:00:00 2001 From: kgv Date: Wed, 13 Nov 2013 22:01:45 +0400 Subject: [PATCH] 0024345: TKOpenGl - GLSL compatibility issues on NV40 (GeForce 6xxx/7xxx) Iterate through maximum light sources in Fragment shader instead of active lights --- src/OpenGl/OpenGl_ShaderManager.cxx | 23 ++++++++++++++++------- src/Shaders/PhongShading.fs | 2 +- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/src/OpenGl/OpenGl_ShaderManager.cxx b/src/OpenGl/OpenGl_ShaderManager.cxx index 3c50e2e9a0..9837f4a907 100644 --- a/src/OpenGl/OpenGl_ShaderManager.cxx +++ b/src/OpenGl/OpenGl_ShaderManager.cxx @@ -261,7 +261,7 @@ public: //! Returns packed (serialized) representation of light source properties const OpenGl_Vec4* Packed() { return reinterpret_cast (this); } - static Standard_Size NbOfVec4() { return 4; } + static Standard_Integer NbOfVec4() { return 4; } }; @@ -275,7 +275,7 @@ public: //! Returns packed (serialized) representation of light source type const OpenGl_Vec2i* Packed() { return reinterpret_cast (this); } - static Standard_Size NbOfVec2i() { return 1; } + static Standard_Integer NbOfVec2i() { return 1; } }; @@ -291,6 +291,12 @@ void OpenGl_ShaderManager::PushLightSourceState (const Handle(OpenGl_ShaderProgr return; } + OpenGl_ShaderLightType* aLightTypeArray = new OpenGl_ShaderLightType[OpenGLMaxLights]; + for (Standard_Integer aLightIt = 0; aLightIt < OpenGLMaxLights; ++aLightIt) + { + aLightTypeArray[aLightIt].Type = -1; + } + const Standard_Integer aLightsDefNb = Min (myLightSourceState.LightSources()->Size(), OpenGLMaxLights); if (aLightsDefNb < 1) { @@ -300,12 +306,15 @@ void OpenGl_ShaderManager::PushLightSourceState (const Handle(OpenGl_ShaderProgr theProgram->SetUniform (myContext, theProgram->GetStateLocation (OpenGl_OCC_LIGHT_AMBIENT), OpenGl_Vec4 (0.0f, 0.0f, 0.0f, 0.0f)); + theProgram->SetUniform (myContext, + theProgram->GetStateLocation (OpenGl_OCC_LIGHT_SOURCE_TYPES), + OpenGLMaxLights * OpenGl_ShaderLightType::NbOfVec2i(), + aLightTypeArray[0].Packed()); theProgram->UpdateState (OpenGl_LIGHT_SOURCES_STATE, myLightSourceState.Index()); return; } OpenGl_ShaderLightParameters* aLightParamsArray = new OpenGl_ShaderLightParameters[aLightsDefNb]; - OpenGl_ShaderLightType* aLightTypeArray = new OpenGl_ShaderLightType[aLightsDefNb]; OpenGl_Vec4 anAmbient (0.0f, 0.0f, 0.0f, 0.0f); Standard_Integer aLightsNb = 0; @@ -345,12 +354,12 @@ void OpenGl_ShaderManager::PushLightSourceState (const Handle(OpenGl_ShaderProgr theProgram->SetUniform (myContext, theProgram->GetStateLocation (OpenGl_OCC_LIGHT_AMBIENT), anAmbient); + theProgram->SetUniform (myContext, + theProgram->GetStateLocation (OpenGl_OCC_LIGHT_SOURCE_TYPES), + OpenGLMaxLights * OpenGl_ShaderLightType::NbOfVec2i(), + aLightTypeArray[0].Packed()); if (aLightsNb > 0) { - theProgram->SetUniform (myContext, - theProgram->GetStateLocation (OpenGl_OCC_LIGHT_SOURCE_TYPES), - aLightsNb * OpenGl_ShaderLightType::NbOfVec2i(), - aLightTypeArray[0].Packed()); theProgram->SetUniform (myContext, theProgram->GetStateLocation (OpenGl_OCC_LIGHT_SOURCE_PARAMS), aLightsNb * OpenGl_ShaderLightParameters::NbOfVec4(), diff --git a/src/Shaders/PhongShading.fs b/src/Shaders/PhongShading.fs index 665f83d3e1..9fc3df28cc 100644 --- a/src/Shaders/PhongShading.fs +++ b/src/Shaders/PhongShading.fs @@ -97,7 +97,7 @@ vec4 computeLighting (in vec3 theNormal, Diffuse = vec3 (0.0); Specular = vec3 (0.0); vec3 aPoint = thePoint.xyz / thePoint.w; - for (int anIndex = 0; anIndex < occLightSourcesCount; ++anIndex) + for (int anIndex = 0; anIndex < THE_MAX_LIGHTS; ++anIndex) { int aType = occLight_Type (anIndex); if (aType == OccLightType_Direct)