blob: 8722ea64adbc0b0e4613479a33d597352afe6e4c (
plain)
1
2
3
4
5
6
7
8
|
/** WARNING: this function is not yet implemented! */
public boolean isFunctionAvailable(String gluFunctionName)
{
// TODO FIXME: Implement the GLU equivalent GL.isFunctionAvailable(String)
if (true) throw new GLException("GLU.isFunctionAvailable is not yet implemented.");
return false;
}
|