 | glError Enumeration |
OpenGL error codes
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
| Member name | Value | Description |
---|
| NoError | 0 |
No error has been recorded.
|
| InvalidEnum | 1280 |
An unacceptable value is specified for an enumerated argument.
The offending command is ignored and has no other side effect than to set the error flag.
|
| InvalidValue | 1281 |
A numeric argument is out of range.
The offending command is ignored and has no other side effect than to set the error flag.
|
| InvalidOperation | 1282 |
The specified operation is not allowed in the current state.
The offending command is ignored and has no other side effect than to set the error flag.
|
| InvalidFramebufferOperation | 1286 |
The command is trying to render to or read from the framebuffer while the currently bound framebuffer is not framebuffer complete.
The offending command is ignored and has no other side effect than to set the error flag.
|
| OutOfMemory | 1285 |
There is not enough memory left to execute the command.
The state of the GL is undefined, except for the state of the error flags, after this error is recorded.
|
See Also