Tgles3
OpenGL ES 3.x thin bindings.
Tgles3
can program OpenGL ES 3.0 to 3.2 contexts. Consult the binding conventions.
Open the module use it, this defines only the module Gl
in your scope. To use in the toplevel with findlib
, just #require "tgls.tgles3"
, it automatically loads the library and opens the Tgles3
module.
References
v0.8.5 — OpenGL ES 3.x — homepage
module Gl : sig ... end
OpenGL ES 3.x bindings.
To find the name of an OCaml function corresponding to a C function name, map the gl
prefix to the module name Tgles3.Gl
, add an underscore between each minuscule and majuscule and lower case the result. For example glGetError
maps to Tgles3.Gl.get_error
To find the name of an OCaml value corresponding to a C enumerant name, map the GL_
prefix to the module name Tgles3.Gl
and lower case the rest. For example GL_COLOR_BUFFER_BIT
maps to Tgles3.Gl.color_buffer_bit
.
The following exceptions occur:
_enum
. For example we have Tgles3.Gl.viewport
and Tgles3.Gl.viewport_enum
.'_'
.'_'
.