Removes unused IsFloatingPoint function from utilities.cpp

Author: Shannon Woods git-svn-id: https://angleproject.googlecode.com/svn/trunk@411 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent fe208885
......@@ -226,18 +226,6 @@ bool IsCompressed(GLenum format)
}
}
bool IsFloatingPoint(GLenum type)
{
if (type == GL_FLOAT || type == GL_HALF_FLOAT_OES)
{
return true;
}
else
{
return false;
}
}
// Returns the size, in bytes, of a single texel in an Image
int ComputePixelSize(GLenum format, GLenum type)
{
......
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