public class VertexCompilationException
extends java.lang.Exception
This can happen on older OpenGL ES 2.0 devices if they, say, do not support variable loops in the shaders. Theoretically should never happen on devices supporting at least OpenGL ES 3.0.
Constructor and Description |
---|
VertexCompilationException()
Default empty constructor
|
VertexCompilationException(java.lang.String detailMessage)
Constructor with a message describing why compilation failed.
|
VertexCompilationException(java.lang.String detailMessage,
java.lang.Throwable throwable)
Constructor necessary to make Chained Exceptions working.
|
VertexCompilationException(java.lang.Throwable throwable)
Constructor necessary to make Chained Exceptions working.
|
public VertexCompilationException()
public VertexCompilationException(java.lang.String detailMessage)
detailMessage
- Message describing why compilation failedpublic VertexCompilationException(java.lang.Throwable throwable)
throwable
- The parent Throwable.public VertexCompilationException(java.lang.String detailMessage, java.lang.Throwable throwable)
detailMessage
- Message describing why compilation failedthrowable
- The parent Throwable.