1 ;;;; This file was automatically generated by /home/bill/programming/cl-glfw/generators/make-bindings-from-spec.lisp
3 (in-package #:cl-glfw-opengl
)
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")