Author: D Herring <dherring@at.tentpost.dot.com>
[cl-glfw.git] / lib / opengl-arb_texture_compression.lisp
blobe19a8b6f0a5b569e73636c366b5863edc07e9787
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 ;;;; arb_texture_compression
7 (defconstant +compressed-alpha-arb+ #x84E9)
8 (defconstant +compressed-luminance-arb+ #x84EA)
9 (defconstant +compressed-luminance-alpha-arb+ #x84EB)
10 (defconstant +compressed-intensity-arb+ #x84EC)
11 (defconstant +compressed-rgb-arb+ #x84ED)
12 (defconstant +compressed-rgba-arb+ #x84EE)
13 (defconstant +texture-compression-hint-arb+ #x84EF)
14 (defconstant +texture-compressed-image-size-arb+ #x86A0)
15 (defconstant +texture-compressed-arb+ #x86A1)
16 (defconstant +num-compressed-texture-formats-arb+ #x86A2)
17 (defconstant +compressed-texture-formats-arb+ #x86A3)
18 (defglextfun "GetCompressedTexImageARB" get-compressed-tex-image-arb :return
19 "void" :args
20 ((:name |target| :type |TextureTarget| :direction :in)
21 (:name |level| :type |CheckedInt32| :direction :in)
22 (:name |img| :type |CompressedTextureARB| :direction :out :array t :size
23 (|target| |level|)))
24 :category "ARB_texture_compression" :version "1.2")
25 (defglextfun "CompressedTexSubImage1DARB" compressed-tex-sub-image-1d-arb
26 :return "void" :args
27 ((:name |target| :type |TextureTarget| :direction :in)
28 (:name |level| :type |CheckedInt32| :direction :in)
29 (:name |xoffset| :type |CheckedInt32| :direction :in)
30 (:name |width| :type |SizeI| :direction :in)
31 (:name |format| :type |PixelFormat| :direction :in)
32 (:name |imageSize| :type |SizeI| :direction :in)
33 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
34 imagesize))
35 :category "ARB_texture_compression" :version "1.2")
36 (defglextfun "CompressedTexSubImage2DARB" compressed-tex-sub-image-2d-arb
37 :return "void" :args
38 ((:name |target| :type |TextureTarget| :direction :in)
39 (:name |level| :type |CheckedInt32| :direction :in)
40 (:name |xoffset| :type |CheckedInt32| :direction :in)
41 (:name |yoffset| :type |CheckedInt32| :direction :in)
42 (:name |width| :type |SizeI| :direction :in)
43 (:name |height| :type |SizeI| :direction :in)
44 (:name |format| :type |PixelFormat| :direction :in)
45 (:name |imageSize| :type |SizeI| :direction :in)
46 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
47 imagesize))
48 :category "ARB_texture_compression" :version "1.2")
49 (defglextfun "CompressedTexSubImage3DARB" compressed-tex-sub-image-3d-arb
50 :return "void" :args
51 ((:name |target| :type |TextureTarget| :direction :in)
52 (:name |level| :type |CheckedInt32| :direction :in)
53 (:name |xoffset| :type |CheckedInt32| :direction :in)
54 (:name |yoffset| :type |CheckedInt32| :direction :in)
55 (:name |zoffset| :type |CheckedInt32| :direction :in)
56 (:name |width| :type |SizeI| :direction :in)
57 (:name |height| :type |SizeI| :direction :in)
58 (:name |depth| :type |SizeI| :direction :in)
59 (:name |format| :type |PixelFormat| :direction :in)
60 (:name |imageSize| :type |SizeI| :direction :in)
61 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
62 imagesize))
63 :category "ARB_texture_compression" :version "1.2")
64 (defglextfun "CompressedTexImage1DARB" compressed-tex-image-1d-arb :return
65 "void" :args
66 ((:name |target| :type |TextureTarget| :direction :in)
67 (:name |level| :type |CheckedInt32| :direction :in)
68 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
69 (:name |width| :type |SizeI| :direction :in)
70 (:name |border| :type |CheckedInt32| :direction :in)
71 (:name |imageSize| :type |SizeI| :direction :in)
72 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
73 imagesize))
74 :category "ARB_texture_compression" :version "1.2")
75 (defglextfun "CompressedTexImage2DARB" compressed-tex-image-2d-arb :return
76 "void" :args
77 ((:name |target| :type |TextureTarget| :direction :in)
78 (:name |level| :type |CheckedInt32| :direction :in)
79 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
80 (:name |width| :type |SizeI| :direction :in)
81 (:name |height| :type |SizeI| :direction :in)
82 (:name |border| :type |CheckedInt32| :direction :in)
83 (:name |imageSize| :type |SizeI| :direction :in)
84 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
85 imagesize))
86 :category "ARB_texture_compression" :version "1.2")
87 (defglextfun "CompressedTexImage3DARB" compressed-tex-image-3d-arb :return
88 "void" :args
89 ((:name |target| :type |TextureTarget| :direction :in)
90 (:name |level| :type |CheckedInt32| :direction :in)
91 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
92 (:name |width| :type |SizeI| :direction :in)
93 (:name |height| :type |SizeI| :direction :in)
94 (:name |depth| :type |SizeI| :direction :in)
95 (:name |border| :type |CheckedInt32| :direction :in)
96 (:name |imageSize| :type |SizeI| :direction :in)
97 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
98 imagesize))
99 :category "ARB_texture_compression" :version "1.2")