clear-gl-error-log ( -- ) - Factor Documentation (original) (raw)

clear-gl-error-log ( -- )
OpenGL error reporting

Prev: log-gl-errors ( -- )
Next: reset-gl-functions ( -- )

Vocabulary
opengl.annotations

Word description
Empties the OpenGL error log populated by log-gl-errors.

See also
throw-gl-errors, gl-error, log-gl-errors, log-gl-error, reset-gl-functions

Definition

USING: kernel namespaces ;

IN: opengl.annotations

: clear-gl-error-log ( -- ) V{ } clone gl-error-log set ;