mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
fixed blended-decal rendering in textured mode
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@38 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
e08e297f3b
commit
0ae156cf51
2 changed files with 36 additions and 33 deletions
1
CHANGES
1
CHANGES
|
@ -5,6 +5,7 @@ that we distribute with the binaries. (see changelog)
|
||||||
SPoG
|
SPoG
|
||||||
- Fixed crash when resetting preferences after startup failure.
|
- Fixed crash when resetting preferences after startup failure.
|
||||||
- Fixed crash on next-leak-spot with build-monitoring enabled.
|
- Fixed crash on next-leak-spot with build-monitoring enabled.
|
||||||
|
- Fixed doom3/quake4 blended-decal rendering when toggling lighting mode.
|
||||||
|
|
||||||
20/03/2006
|
20/03/2006
|
||||||
SPoG
|
SPoG
|
||||||
|
|
|
@ -1093,39 +1093,6 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
realiseLighting();
|
realiseLighting();
|
||||||
|
|
||||||
if(m_layers.size() == 1)
|
|
||||||
{
|
|
||||||
const BlendFuncExpression& blendFunc = m_template.m_layers.front().blendFunc();
|
|
||||||
if(!string_empty(blendFunc.second.c_str()))
|
|
||||||
{
|
|
||||||
m_blendFunc = BlendFunc(
|
|
||||||
evaluateBlendFactor(blendFunc.first.c_str(), m_template.m_params, m_args),
|
|
||||||
evaluateBlendFactor(blendFunc.second.c_str(), m_template.m_params, m_args)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
const char* blend = evaluateShaderValue(blendFunc.first.c_str(), m_template.m_params, m_args);
|
|
||||||
|
|
||||||
if(string_equal_nocase(blend, "add"))
|
|
||||||
{
|
|
||||||
m_blendFunc = BlendFunc(BLEND_ONE, BLEND_ONE);
|
|
||||||
}
|
|
||||||
else if(string_equal_nocase(blend, "filter"))
|
|
||||||
{
|
|
||||||
m_blendFunc = BlendFunc(BLEND_DST_COLOUR, BLEND_ZERO);
|
|
||||||
}
|
|
||||||
else if(string_equal_nocase(blend, "blend"))
|
|
||||||
{
|
|
||||||
m_blendFunc = BlendFunc(BLEND_SRC_ALPHA, BLEND_ONE_MINUS_SRC_ALPHA);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
globalErrorStream() << "parsing blend value failed: " << makeQuoted(blend) << "\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void unrealise()
|
void unrealise()
|
||||||
|
@ -1159,6 +1126,39 @@ public:
|
||||||
{
|
{
|
||||||
m_layers.push_back(evaluateLayer(*i, m_template.m_params, m_args));
|
m_layers.push_back(evaluateLayer(*i, m_template.m_params, m_args));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(m_layers.size() == 1)
|
||||||
|
{
|
||||||
|
const BlendFuncExpression& blendFunc = m_template.m_layers.front().blendFunc();
|
||||||
|
if(!string_empty(blendFunc.second.c_str()))
|
||||||
|
{
|
||||||
|
m_blendFunc = BlendFunc(
|
||||||
|
evaluateBlendFactor(blendFunc.first.c_str(), m_template.m_params, m_args),
|
||||||
|
evaluateBlendFactor(blendFunc.second.c_str(), m_template.m_params, m_args)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const char* blend = evaluateShaderValue(blendFunc.first.c_str(), m_template.m_params, m_args);
|
||||||
|
|
||||||
|
if(string_equal_nocase(blend, "add"))
|
||||||
|
{
|
||||||
|
m_blendFunc = BlendFunc(BLEND_ONE, BLEND_ONE);
|
||||||
|
}
|
||||||
|
else if(string_equal_nocase(blend, "filter"))
|
||||||
|
{
|
||||||
|
m_blendFunc = BlendFunc(BLEND_DST_COLOUR, BLEND_ZERO);
|
||||||
|
}
|
||||||
|
else if(string_equal_nocase(blend, "blend"))
|
||||||
|
{
|
||||||
|
m_blendFunc = BlendFunc(BLEND_SRC_ALPHA, BLEND_ONE_MINUS_SRC_ALPHA);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
globalErrorStream() << "parsing blend value failed: " << makeQuoted(blend) << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1177,6 +1177,8 @@ public:
|
||||||
GlobalTexturesCache().release((*i).texture());
|
GlobalTexturesCache().release((*i).texture());
|
||||||
}
|
}
|
||||||
m_layers.clear();
|
m_layers.clear();
|
||||||
|
|
||||||
|
m_blendFunc = BlendFunc(BLEND_SRC_ALPHA, BLEND_ONE_MINUS_SRC_ALPHA);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue