Fix for callbacks under windows from Andrew Lyon.
[cl-glfw.git] / lib / opengl-ext_texture3d.lisp
blobd2ad5a815888dc6258e40982050b71bd6312f045
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 +texture-3d-binding-oes+ #x806A)
8 (defconstant +texture-3d-oes+ #x806F)
9 (defconstant +texture-wrap-r-oes+ #x8072)
10 (defconstant +max-3d-texture-size-oes+ #x8073)
11 (defglextfun "TexSubImage3DEXT" tex-sub-image-3d-ext :return "void" :args
12 ((:name |target| :type |TextureTarget| :direction :in)
13 (:name |level| :type |CheckedInt32| :direction :in)
14 (:name |xoffset| :type |CheckedInt32| :direction :in)
15 (:name |yoffset| :type |CheckedInt32| :direction :in)
16 (:name |zoffset| :type |CheckedInt32| :direction :in)
17 (:name |width| :type |SizeI| :direction :in)
18 (:name |height| :type |SizeI| :direction :in)
19 (:name |depth| :type |SizeI| :direction :in)
20 (:name |format| :type |PixelFormat| :direction :in)
21 (:name |type| :type |PixelType| :direction :in)
22 (:name |pixels| :type |Void| :direction :in :array t :size
23 (|format| |type| |width| |height| |depth|)))
24 :category "EXT_texture3D" :deprecated nil :version "1.0")
25 (defglextfun "TexImage3DEXT" tex-image-3d-ext :return "void" :args
26 ((:name |target| :type |TextureTarget| :direction :in)
27 (:name |level| :type |CheckedInt32| :direction :in)
28 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
29 (:name |width| :type |SizeI| :direction :in)
30 (:name |height| :type |SizeI| :direction :in)
31 (:name |depth| :type |SizeI| :direction :in)
32 (:name |border| :type |CheckedInt32| :direction :in)
33 (:name |format| :type |PixelFormat| :direction :in)
34 (:name |type| :type |PixelType| :direction :in)
35 (:name |pixels| :type |Void| :direction :in :array t :size
36 (|format| |type| |width| |height| |depth|)))
37 :category "EXT_texture3D" :deprecated nil :version "1.0")
38 (make-extension-loader |EXT_texture3D|
39 (("TexSubImage3DEXT" tex-sub-image-3d-ext :return "void" :args
40 ((:name |target| :type |TextureTarget| :direction :in)
41 (:name |level| :type |CheckedInt32| :direction :in)
42 (:name |xoffset| :type |CheckedInt32| :direction :in)
43 (:name |yoffset| :type |CheckedInt32| :direction :in)
44 (:name |zoffset| :type |CheckedInt32| :direction :in)
45 (:name |width| :type |SizeI| :direction :in)
46 (:name |height| :type |SizeI| :direction :in)
47 (:name |depth| :type |SizeI| :direction :in)
48 (:name |format| :type |PixelFormat| :direction :in)
49 (:name |type| :type |PixelType| :direction :in)
50 (:name |pixels| :type |Void| :direction :in :array t :size
51 (|format| |type| |width| |height| |depth|)))
52 :category "EXT_texture3D" :deprecated nil :version "1.0")
53 ("TexImage3DEXT" tex-image-3d-ext :return "void" :args
54 ((:name |target| :type |TextureTarget| :direction :in)
55 (:name |level| :type |CheckedInt32| :direction :in)
56 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
57 (:name |width| :type |SizeI| :direction :in)
58 (:name |height| :type |SizeI| :direction :in)
59 (:name |depth| :type |SizeI| :direction :in)
60 (:name |border| :type |CheckedInt32| :direction :in)
61 (:name |format| :type |PixelFormat| :direction :in)
62 (:name |type| :type |PixelType| :direction :in)
63 (:name |pixels| :type |Void| :direction :in :array t :size
64 (|format| |type| |width| |height| |depth|)))
65 :category "EXT_texture3D" :deprecated nil :version "1.0")))