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
diff --git a/src/compiler/OutputHLSL.cpp b/src/compiler/OutputHLSL.cpp
index c97c02f..38fd3c6 100644
--- a/src/compiler/OutputHLSL.cpp
+++ b/src/compiler/OutputHLSL.cpp
@@ -1115,21 +1115,18 @@
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
+ out << "gl_textureCube(";
}
- else
- {
- UNIMPLEMENTED(); // FIXME
- }
+ else UNREACHABLE();
}
}
else if (visit == InVisit)