Hack to make it work with CCL
[cl-glfw.git] / lib / opengl-sgi_color_table.lisp
blobfb203f254222163ea1b02bf9d3619a409bba1cdf
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 (defconstant +bgr+ #x80E0)
8 (defglextfun "GetColorTableParameterivSGI" get-color-table-parameteriv-sgi
9 :return "void" :args
10 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
11 (:name |pname| :type |GetColorTableParameterPNameSGI| :direction :in)
12 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
13 :category "SGI_color_table" :deprecated nil :version "1.0")
14 (defglextfun "GetColorTableParameterfvSGI" get-color-table-parameterfv-sgi
15 :return "void" :args
16 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
17 (:name |pname| :type |GetColorTableParameterPNameSGI| :direction :in)
18 (:name |params| :type |Float32| :direction :out :array t :size (|pname|)))
19 :category "SGI_color_table" :deprecated nil :version "1.0")
20 (defglextfun "GetColorTableSGI" get-color-table-sgi :return "void" :args
21 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
22 (:name |format| :type |PixelFormat| :direction :in)
23 (:name |type| :type |PixelType| :direction :in)
24 (:name |table| :type |Void| :direction :out :array t :size
25 (|target| |format| |type|)))
26 :category "SGI_color_table" :deprecated nil :version "1.0")
27 (defglextfun "CopyColorTableSGI" copy-color-table-sgi :return "void" :args
28 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
29 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
30 (:name |x| :type |WinCoord| :direction :in)
31 (:name |y| :type |WinCoord| :direction :in)
32 (:name |width| :type |SizeI| :direction :in))
33 :category "SGI_color_table" :deprecated nil :version "1.0")
34 (defglextfun "ColorTableParameterivSGI" color-table-parameteriv-sgi :return
35 "void" :args
36 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
37 (:name |pname| :type |ColorTableParameterPNameSGI| :direction :in)
38 (:name |params| :type |CheckedInt32| :direction :in :array t :size
39 (|pname|)))
40 :category "SGI_color_table" :deprecated nil :version "1.0")
41 (defglextfun "ColorTableParameterfvSGI" color-table-parameterfv-sgi :return
42 "void" :args
43 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
44 (:name |pname| :type |ColorTableParameterPNameSGI| :direction :in)
45 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
46 (|pname|)))
47 :category "SGI_color_table" :deprecated nil :version "1.0")
48 (defglextfun "ColorTableSGI" color-table-sgi :return "void" :args
49 ((:name |target| :type |ColorTableTargetSGI| :direction :in)
50 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
51 (:name |width| :type |SizeI| :direction :in)
52 (:name |format| :type |PixelFormat| :direction :in)
53 (:name |type| :type |PixelType| :direction :in)
54 (:name |table| :type |Void| :direction :in :array t :size
55 (|format| |type| |width|)))
56 :category "SGI_color_table" :deprecated nil :version "1.0")