mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
"ShaderFeatureGLSL::getInTexCoord - Type mismatch!" bit turned out to be a simple typofix
This commit is contained in:
parent
091af6bdff
commit
a67d2c52cd
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ U32 GlowMapGLSL::getOutputTargets(const MaterialFeatureData& fd) const
|
||||||
//deferred emissive
|
//deferred emissive
|
||||||
void GlowMapGLSL::processPix(Vector<ShaderComponent*>& componentList, const MaterialFeatureData& fd)
|
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;
|
Var* glowMap = new Var;
|
||||||
glowMap->setType("sampler2D");
|
glowMap->setType("sampler2D");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue