Fixed the nil names of the generator.
[cl-glfw/dh.git] / lib / opengl-ext_texture3d.lisp
blobfa5363fb747cc17d8a207df07805fda24141cc72
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_texture3d
7 (defconstant +pack-skip-images+ #x806B)
8 (defconstant +pack-image-height+ #x806C)
9 (defconstant +unpack-skip-images+ #x806D)
10 (defconstant +unpack-image-height+ #x806E)
11 (defconstant +texture-3d+ #x806F)
12 (defconstant +proxy-texture-3d+ #x8070)
13 (defconstant +texture-depth+ #x8071)
14 (defconstant +texture-wrap-r+ #x8072)
15 (defconstant +max-3d-texture-size+ #x8073)
16 (defglextfun
17 (("TexSubImage3DEXT" tex-sub-image-3d-ext) :args
18 ((:name |target| :type |TextureTarget| :direction :in)
19 (:name |level| :type |CheckedInt32| :direction :in)
20 (:name |xoffset| :type |CheckedInt32| :direction :in)
21 (:name |yoffset| :type |CheckedInt32| :direction :in)
22 (:name |zoffset| :type |CheckedInt32| :direction :in)
23 (:name |width| :type |SizeI| :direction :in)
24 (:name |height| :type |SizeI| :direction :in)
25 (:name |depth| :type |SizeI| :direction :in)
26 (:name |format| :type |PixelFormat| :direction :in)
27 (:name |type| :type |PixelType| :direction :in)
28 (:name |pixels| :type |Void| :direction :in :array t :size
29 (|format| |type| |width| |height| |depth|)))
30 :return ("void") :category ("EXT_texture3D") :dlflags ("handcode") :glxflags
31 ("client-handcode" "server-handcode" "EXT") :version ("1.0") :glxropcode
32 ("4115") :extension nil :alias ("TexSubImage3D") :glsalias ("TexSubImage3D")))
33 (defglextfun
34 (("TexImage3DEXT" tex-image-3d-ext) :args
35 ((:name |target| :type |TextureTarget| :direction :in)
36 (:name |level| :type |CheckedInt32| :direction :in)
37 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
38 (:name |width| :type |SizeI| :direction :in)
39 (:name |height| :type |SizeI| :direction :in)
40 (:name |depth| :type |SizeI| :direction :in)
41 (:name |border| :type |CheckedInt32| :direction :in)
42 (:name |format| :type |PixelFormat| :direction :in)
43 (:name |type| :type |PixelType| :direction :in)
44 (:name |pixels| :type |Void| :direction :in :array t :size
45 (|format| |type| |width| |height| |depth|)))
46 :return ("void") :category ("EXT_texture3D") :dlflags ("handcode") :glxflags
47 ("client-handcode" "server-handcode" "EXT") :version ("1.0") :glxropcode
48 ("4114") :extension nil :alias ("TexImage3D") :glsalias ("TexImage3D")))