mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
"ShaderFeatureGLSL::getInTexCoord - Type mismatch!" bit turned out to be a simple typofix
This commit is contained in:
parent
091af6bdff
commit
a67d2c52cd
|
|
@ -236,7 +236,7 @@ U32 GlowMapGLSL::getOutputTargets(const MaterialFeatureData& fd) const
|
|||
//deferred emissive
|
||||
void GlowMapGLSL::processPix(Vector<ShaderComponent*>& componentList, const MaterialFeatureData& fd)
|
||||
{
|
||||
Var* texCoord = getInTexCoord("texCoord", "float2", componentList);
|
||||
Var* texCoord = getInTexCoord("texCoord", "vec2", componentList);
|
||||
|
||||
Var* glowMap = new Var;
|
||||
glowMap->setType("sampler2D");
|
||||
|
|
|
|||
Loading…
Reference in a new issue