Fixed reporting unlinked varyings

Signed-off-by: Andrew Lewycky Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/trunk@279 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 9bc5d235
...@@ -1070,7 +1070,7 @@ bool Program::linkVaryings() ...@@ -1070,7 +1070,7 @@ bool Program::linkVaryings()
{ {
if (pixelVaryings[in].link < 0) if (pixelVaryings[in].link < 0)
{ {
appendToInfoLog("Pixel varying (%s) does not match any vertex varying", pixelVaryings[in].name); appendToInfoLog("Fragment varying (%s) does not match any vertex varying", pixelVaryings[in].name.c_str());
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment