Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-ext_draw_buffers2.lisp
blob7d2092687915648a5c5bbac97f720d031766fe70
2 (in-package #:gl)
4 ;;;; EXT_draw_buffers2
6 (defglextfun
7 (("IsEnabledIndexedEXT" is-enabled-indexed-ext) :args
8 ((:name |target| :type |GLenum| :direction :in)
9 (:name |index| :type |UInt32| :direction :in))
10 :return ("Boolean") :category ("EXT_draw_buffers2") :version ("2.0") :dlflags
11 ("notlistable") :glxflags ("ignore") :glfflags ("ignore") :glsflags
12 ("ignore") :extension ("soft" "WINSOFT")))
13 (defglextfun
14 (("DisableIndexedEXT" disable-indexed-ext) :args
15 ((:name |target| :type |GLenum| :direction :in)
16 (:name |index| :type |UInt32| :direction :in))
17 :return ("void") :category ("EXT_draw_buffers2") :version ("2.0") :glxflags
18 ("ignore") :glfflags ("ignore") :glsflags ("ignore") :extension
19 ("soft" "WINSOFT")))
20 (defglextfun
21 (("EnableIndexedEXT" enable-indexed-ext) :args
22 ((:name |target| :type |GLenum| :direction :in)
23 (:name |index| :type |UInt32| :direction :in))
24 :return ("void") :category ("EXT_draw_buffers2") :version ("2.0") :glxflags
25 ("ignore") :glfflags ("ignore") :glsflags ("ignore") :extension
26 ("soft" "WINSOFT")))
27 (defglextfun
28 (("GetIntegerIndexedvEXT" get-integer-indexedv-ext) :args
29 ((:name |target| :type |GLenum| :direction :in)
30 (:name |index| :type |UInt32| :direction :in)
31 (:name |data| :type |Int32| :direction :out :array t :size (|target|)))
32 :return ("void") :category ("EXT_draw_buffers2") :version ("2.0") :dlflags
33 ("notlistable") :glxflags ("ignore") :glfflags ("ignore") :glsflags
34 ("ignore") :extension ("soft" "WINSOFT")))
35 (defglextfun
36 (("GetBooleanIndexedvEXT" get-boolean-indexedv-ext) :args
37 ((:name |target| :type |GLenum| :direction :in)
38 (:name |index| :type |UInt32| :direction :in)
39 (:name |data| :type |Boolean| :direction :out :array t :size (|target|)))
40 :return ("void") :category ("EXT_draw_buffers2") :version ("2.0") :dlflags
41 ("notlistable") :glxflags ("ignore") :glfflags ("ignore") :glsflags
42 ("ignore") :extension ("soft" "WINSOFT")))
43 (defglextfun
44 (("ColorMaskIndexedEXT" color-mask-indexed-ext) :args
45 ((:name |index| :type |UInt32| :direction :in)
46 (:name |r| :type |Boolean| :direction :in)
47 (:name |g| :type |Boolean| :direction :in)
48 (:name |b| :type |Boolean| :direction :in)
49 (:name |a| :type |Boolean| :direction :in))
50 :return ("void") :category ("EXT_draw_buffers2") :version ("2.0") :glxflags
51 ("ignore") :glfflags ("ignore") :glsflags ("ignore") :extension
52 ("soft" "WINSOFT")))