Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-ext_color_subtable.lisp
blobb05fc0a93a9a1837ec07e804eec762905659be8c
2 (in-package #:gl)
4 ;;;; EXT_color_subtable
6 (defglextfun
7 (("CopyColorSubTableEXT" copy-color-sub-table-ext) :args
8 ((:name |target| :type |ColorTableTarget| :direction :in)
9 (:name |start| :type |SizeI| :direction :in)
10 (:name |x| :type |WinCoord| :direction :in)
11 (:name |y| :type |WinCoord| :direction :in)
12 (:name |width| :type |SizeI| :direction :in))
13 :return ("void") :category ("EXT_color_subtable") :version ("1.2") :alias
14 ("CopyColorSubTable") :glsalias ("CopyColorSubTable")))
15 (defglextfun
16 (("ColorSubTableEXT" color-sub-table-ext) :args
17 ((:name |target| :type |ColorTableTarget| :direction :in)
18 (:name |start| :type |SizeI| :direction :in)
19 (:name |count| :type |SizeI| :direction :in)
20 (:name |format| :type |PixelFormat| :direction :in)
21 (:name |type| :type |PixelType| :direction :in)
22 (:name |data| :type |Void| :direction :in :array t :size
23 (|format| |type| |count|)))
24 :return ("void") :category ("EXT_color_subtable") :version ("1.2") :alias
25 ("ColorSubTable") :glsalias ("ColorSubTable")))