Added Win+Mac notes. Some wishlist aswell.
[cl-glfw/jecs.git] / lib / opengl-ext_texture3d.lisp
blobf77b9391a4c136419e96912e8a5e7e7c0d27bfd2
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 "TexSubImage3DEXT" tex-sub-image-3d-ext :return "void" :args
17 ((:name |target| :type |TextureTarget| :direction :in)
18 (:name |level| :type |CheckedInt32| :direction :in)
19 (:name |xoffset| :type |CheckedInt32| :direction :in)
20 (:name |yoffset| :type |CheckedInt32| :direction :in)
21 (:name |zoffset| :type |CheckedInt32| :direction :in)
22 (:name |width| :type |SizeI| :direction :in)
23 (:name |height| :type |SizeI| :direction :in)
24 (:name |depth| :type |SizeI| :direction :in)
25 (:name |format| :type |PixelFormat| :direction :in)
26 (:name |type| :type |PixelType| :direction :in)
27 (:name |pixels| :type |Void| :direction :in :array t :size
28 (|format| |type| |width| |height| |depth|)))
29 :category "EXT_texture3D" :version "1.0")
30 (defglextfun "TexImage3DEXT" tex-image-3d-ext :return "void" :args
31 ((:name |target| :type |TextureTarget| :direction :in)
32 (:name |level| :type |CheckedInt32| :direction :in)
33 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
34 (:name |width| :type |SizeI| :direction :in)
35 (:name |height| :type |SizeI| :direction :in)
36 (:name |depth| :type |SizeI| :direction :in)
37 (:name |border| :type |CheckedInt32| :direction :in)
38 (:name |format| :type |PixelFormat| :direction :in)
39 (:name |type| :type |PixelType| :direction :in)
40 (:name |pixels| :type |Void| :direction :in :array t :size
41 (|format| |type| |width| |height| |depth|)))
42 :category "EXT_texture3D" :version "1.0")