Author: D Herring <dherring@at.tentpost.dot.com>
[cl-glfw.git] / lib / opengl-sgis_texture4d.lisp
blobe252ac428ff8901bb532edc2b3841a854efbbf33
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 ;;;; sgis_texture4d
7 (defglextfun "TexSubImage4DSGIS" tex-sub-image-4d-sgis :return "void" :args
8 ((:name |target| :type |TextureTarget| :direction :in)
9 (:name |level| :type |CheckedInt32| :direction :in)
10 (:name |xoffset| :type |CheckedInt32| :direction :in)
11 (:name |yoffset| :type |CheckedInt32| :direction :in)
12 (:name |zoffset| :type |CheckedInt32| :direction :in)
13 (:name |woffset| :type |CheckedInt32| :direction :in)
14 (:name |width| :type |SizeI| :direction :in)
15 (:name |height| :type |SizeI| :direction :in)
16 (:name |depth| :type |SizeI| :direction :in)
17 (:name |size4d| :type |SizeI| :direction :in)
18 (:name |format| :type |PixelFormat| :direction :in)
19 (:name |type| :type |PixelType| :direction :in)
20 (:name |pixels| :type |Void| :direction :in :array t :size
21 (|format| |type| |width| |height| |depth| |size4d|)))
22 :category "SGIS_texture4D" :version "1.0")
23 (defglextfun "TexImage4DSGIS" tex-image-4d-sgis :return "void" :args
24 ((:name |target| :type |TextureTarget| :direction :in)
25 (:name |level| :type |CheckedInt32| :direction :in)
26 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
27 (:name |width| :type |SizeI| :direction :in)
28 (:name |height| :type |SizeI| :direction :in)
29 (:name |depth| :type |SizeI| :direction :in)
30 (:name |size4d| :type |SizeI| :direction :in)
31 (:name |border| :type |CheckedInt32| :direction :in)
32 (:name |format| :type |PixelFormat| :direction :in)
33 (:name |type| :type |PixelType| :direction :in)
34 (:name |pixels| :type |Void| :direction :in :array t :size
35 (|format| |type| |width| |height| |depth| |size4d|)))
36 :category "SGIS_texture4D" :version "1.0")