Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2009-05-22 10:12:18 +0400
committerDalai Felinto <dfelinto@gmail.com>2009-05-22 10:12:18 +0400
commitec60c74f081b006a6e8aebefe930a37aac95b865 (patch)
treebd56d584c9b3fab323ec50292e7c5f136e034465 /source/gameengine/Ketsji/KX_Light.cpp
parent612f3b326662498207e6e051feeceaac81e09343 (diff)
Fix for: energy IPO not supported in glsl mode (reported in the forum).
in fact I redid part of the last "fix", making it working properly now. Before we were changing Lamp->la . This is the Blender Lamp, we shouldn't touch it. So this part of the code is correct now. Things that could be tackled: - color attribute is returning negative values when NEGATIVE is toggled - objects with no material (default gray one) still don't support lamp spots (not spot lamp but the spot of the lamps)
Diffstat (limited to 'source/gameengine/Ketsji/KX_Light.cpp')
-rw-r--r--source/gameengine/Ketsji/KX_Light.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/gameengine/Ketsji/KX_Light.cpp b/source/gameengine/Ketsji/KX_Light.cpp
index 1496f34c5f2..fe575384a35 100644
--- a/source/gameengine/Ketsji/KX_Light.cpp
+++ b/source/gameengine/Ketsji/KX_Light.cpp
@@ -61,11 +61,6 @@ KX_LightObject::KX_LightObject(void* sgReplicationInfo,SG_Callbacks callbacks,
m_rendertools->AddLight(&m_lightobj);
m_glsl = glsl;
m_blenderscene = ((KX_Scene*)sgReplicationInfo)->GetBlenderScene();
-
- m_initialvalues[0] = lightobj.m_red;
- m_initialvalues[1] = lightobj.m_green;
- m_initialvalues[2] = lightobj.m_blue;
- m_initialvalues[3] = lightobj.m_energy;
};
@@ -76,8 +71,6 @@ KX_LightObject::~KX_LightObject()
if((lamp = GetGPULamp())) {
float obmat[4][4] = {{0}};
GPU_lamp_update(lamp, 0, obmat);
- GPU_lamp_update_colors(lamp, m_initialvalues[0], m_initialvalues[1],
- m_initialvalues[2], m_initialvalues[3]);
}
m_rendertools->RemoveLight(&m_lightobj);