Clean up old comments

TRAC #11444 Signed-off-by: Andrew Lewycky Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/trunk@147 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent edab063e
......@@ -1115,21 +1115,18 @@ bool OutputHLSL::visitAggregate(Visit visit, TIntermAggregate *node)
else if (name == "texture2DLod")
{
out << "gl_texture2DLod(";
UNIMPLEMENTED(); // FIXME: Move lod to last texture coordinate component
UNIMPLEMENTED(); // Requires the vertex shader texture sampling extension
}
else if (name == "texture2DProjLod")
{
out << "gl_texture2DProjLod(";
UNIMPLEMENTED(); // FIXME: Move lod to last texture coordinate component
UNIMPLEMENTED(); // Requires the vertex shader texture sampling extension
}
else if (name == "textureCube")
{
out << "gl_textureCube("; // FIXME: Incorrect sampling location
}
else
{
UNIMPLEMENTED(); // FIXME
out << "gl_textureCube(";
}
else UNREACHABLE();
}
}
else if (visit == InVisit)
......
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