From 5a5f0830e42e95b30a2a1ef038634a76a5c3c744 Mon Sep 17 00:00:00 2001 From: Erik Johansson Andersson Date: Thu, 15 Jan 2015 21:03:34 +0100 Subject: [PATCH] Create README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e59c9f6 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# opengl +An OpenGL interface + +# Extension loading +``loadExtensions()`` must be executed after the creation of a rendering context and before any OpenGL extension procs are used. + +# Automatic error checking +The OpenGL procs do perform automatic error checking by default. This can be disabled at compile-time by defining the conditional symbol ``noAutoGLerrorCheck`` (-d:noAutoGLerrorCheck), in which case the error checking code will be omitted from the binary; or at run-time by executing this statement: ``enableAutoGLerrorCheck(false)``.