Stripped out a lot of useless info from the spec, by selecting only what is needed.
[cl-glfw/jecs.git] / lib / opengl-sgi_color_table.lisp
blobbf917161e72cb1671a0035c87ab018a5179a49da
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 ;;;; sgi_color_table
7 (defglextfun "GetColorTableParameterivSGI" get-color-table-parameteriv-sgi
8 :return "void" :args
9 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
10 (:name |pname| :type |GetColorTableParameterPNameSGI| :direction :in)
11 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
12 :category "SGI_color_table" :version "1.0")
13 (defglextfun "GetColorTableParameterfvSGI" get-color-table-parameterfv-sgi
14 :return "void" :args
15 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
16 (:name |pname| :type |GetColorTableParameterPNameSGI| :direction :in)
17 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
18 :category "SGI_color_table" :version "1.0")
19 (defglextfun "GetColorTableSGI" get-color-table-sgi :return "void" :args
20 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
21 (:name |format| :type |PixelFormat| :direction :in)
22 (:name |type| :type |PixelType| :direction :in)
23 (:name |table| :type |Void| :direction :out :array t :size
24 (|target| |format| |type|)))
25 :category "SGI_color_table" :version "1.0")
26 (defglextfun "CopyColorTableSGI" copy-color-table-sgi :return "void" :args
27 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
28 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
29 (:name |x| :type |WinCoord| :direction :in)
30 (:name |y| :type |WinCoord| :direction :in)
31 (:name |width| :type |SizeI| :direction :in))
32 :category "SGI_color_table" :version "1.0")
33 (defglextfun "ColorTableParameterivSGI" color-table-parameteriv-sgi :return
34 "void" :args
35 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
36 (:name |pname| :type |ColorTableParameterPNameSGI| :direction :in)
37 (:name |params| :type |CheckedInt32| :direction :in :array t :size
38 (|pname|)))
39 :category "SGI_color_table" :version "1.0")
40 (defglextfun "ColorTableParameterfvSGI" color-table-parameterfv-sgi :return
41 "void" :args
42 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
43 (:name |pname| :type |ColorTableParameterPNameSGI| :direction :in)
44 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
45 (|pname|)))
46 :category "SGI_color_table" :version "1.0")
47 (defglextfun "ColorTableSGI" color-table-sgi :return "void" :args
48 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
49 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
50 (:name |width| :type |SizeI| :direction :in)
51 (:name |format| :type |PixelFormat| :direction :in)
52 (:name |type| :type |PixelType| :direction :in)
53 (:name |table| :type |Void| :direction :in :array t :size
54 (|format| |type| |width|)))
55 :category "SGI_color_table" :version "1.0")