gl-error-log - Factor Documentation (original) (raw)
Vocabulary
opengl.annotations
Variable description
A vector of OpenGL errors logged by log-gl-errors. Each log entry has the following tuple slots:
• | function is the OpenGL function that raised the error. |
---|---|
• | error is the OpenGL error code. |
• | timestamp is the time the error was logged. |
The error log is emptied using the clear-gl-error-log word.
Variable value
Current value in global namespace:
Definition
USING: calendar opengl words ;
TUPLE: gl-error-log
{ function word initial: t }
{ error gl-error-tuple initial: T{ gl-error-tuple } }
{ timestamp timestamp initial: T{ timestamp } } ;