Click or drag to resize

glError Enumeration

OpenGL error codes

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum Error
Members
  Member nameValueDescription
NoError0 No error has been recorded.
InvalidEnum1280 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.
InvalidValue1281 A numeric argument is out of range. The offending command is ignored and has no other side effect than to set the error flag.
InvalidOperation1282 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.
InvalidFramebufferOperation1286 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.
OutOfMemory1285 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