Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-ext_compiled_vertex_array.lisp
blob3f38102d6cd200ca77562f1048e3f1239b26b9a2
2 (in-package #:gl)
4 ;;;; EXT_compiled_vertex_array
6 (defconstant +array-element-lock-first-ext+ #x81A8)
7 (defconstant +array-element-lock-count-ext+ #x81A9)
8 (defglextfun
9 (("UnlockArraysEXT" unlock-arrays-ext) :args nil :return ("void") :category
10 ("EXT_compiled_vertex_array") :version ("1.1") :dlflags ("notlistable")
11 :extension ("soft") :glxflags ("ignore") :glsopcode ("0x01D4") :offset
12 ("541")))
13 (defglextfun
14 (("LockArraysEXT" lock-arrays-ext) :args
15 ((:name |first| :type |Int32| :direction :in)
16 (:name |count| :type |SizeI| :direction :in))
17 :return ("void") :category ("EXT_compiled_vertex_array") :version ("1.1")
18 :dlflags ("notlistable") :extension ("soft") :glxflags ("ignore") :glsopcode
19 ("0x01D3") :offset ("540")))