Stripped out a lot of useless info from the spec, by selecting only what is needed.
[cl-glfw/jecs.git] / lib / opengl-ext_draw_buffers2.lisp
blob4c5de1e44847ab73ba17a7dbe242bca20178faac
1 ;;;; This file was automatically generated by /home/bill/programming/cl-glfw/generators/make-bindings-from-spec.lisp
3 (in-package #:cl-glfw-opengl)
5 ;;;; ext_draw_buffers2
7 (defglextfun "IsEnabledIndexedEXT" is-enabled-indexed-ext :return "Boolean"
8 :args
9 ((:name |target| :type |GLenum| :direction :in)
10 (:name |index| :type |UInt32| :direction :in))
11 :category "EXT_draw_buffers2" :version "2.0")
12 (defglextfun "DisableIndexedEXT" disable-indexed-ext :return "void" :args
13 ((:name |target| :type |GLenum| :direction :in)
14 (:name |index| :type |UInt32| :direction :in))
15 :category "EXT_draw_buffers2" :version "2.0")
16 (defglextfun "EnableIndexedEXT" enable-indexed-ext :return "void" :args
17 ((:name |target| :type |GLenum| :direction :in)
18 (:name |index| :type |UInt32| :direction :in))
19 :category "EXT_draw_buffers2" :version "2.0")
20 (defglextfun "GetIntegerIndexedvEXT" get-integer-indexed-v-ext :return "void"
21 :args
22 ((:name |target| :type |GLenum| :direction :in)
23 (:name |index| :type |UInt32| :direction :in)
24 (:name |data| :type |Int32| :direction :out :array t :size (|target|)))
25 :category "EXT_draw_buffers2" :version "2.0")
26 (defglextfun "GetBooleanIndexedvEXT" get-boolean-indexed-v-ext :return "void"
27 :args
28 ((:name |target| :type |GLenum| :direction :in)
29 (:name |index| :type |UInt32| :direction :in)
30 (:name |data| :type |Boolean| :direction :out :array t :size (|target|)))
31 :category "EXT_draw_buffers2" :version "2.0")
32 (defglextfun "ColorMaskIndexedEXT" color-mask-indexed-ext :return "void" :args
33 ((:name |index| :type |UInt32| :direction :in)
34 (:name |r| :type |Boolean| :direction :in)
35 (:name |g| :type |Boolean| :direction :in)
36 (:name |b| :type |Boolean| :direction :in)
37 (:name |a| :type |Boolean| :direction :in))
38 :category "EXT_draw_buffers2" :version "2.0")