Fix for callbacks under windows from Andrew Lyon.
[cl-glfw.git] / lib / opengl-arb_texture_compression.lisp
blobf8a0a786deed873ce52705e762b363ab6ca1dcdd
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 (defconstant +compressed-alpha-arb+ #x84E9)
19 (defconstant +compressed-luminance-arb+ #x84EA)
20 (defconstant +compressed-luminance-alpha-arb+ #x84EB)
21 (defconstant +compressed-intensity-arb+ #x84EC)
22 (defconstant +compressed-rgb-arb+ #x84ED)
23 (defconstant +compressed-rgba-arb+ #x84EE)
24 (defconstant +texture-compression-hint-arb+ #x84EF)
25 (defconstant +texture-compressed-image-size-arb+ #x86A0)
26 (defconstant +texture-compressed-arb+ #x86A1)
27 (defconstant +num-compressed-texture-formats-arb+ #x86A2)
28 (defconstant +compressed-texture-formats-arb+ #x86A3)
29 (defglextfun "GetCompressedTexImageARB" get-compressed-tex-image-arb :return
30 "void" :args
31 ((:name |target| :type |TextureTarget| :direction :in)
32 (:name |level| :type |CheckedInt32| :direction :in)
33 (:name |img| :type |CompressedTextureARB| :direction :out :array t :size
34 (|target| |level|)))
35 :category "ARB_texture_compression" :deprecated nil :version "1.2")
36 (defglextfun "CompressedTexSubImage1DARB" compressed-tex-sub-image-1d-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 |width| :type |SizeI| :direction :in)
42 (:name |format| :type |PixelFormat| :direction :in)
43 (:name |imageSize| :type |SizeI| :direction :in)
44 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
45 imagesize))
46 :category "ARB_texture_compression" :deprecated nil :version "1.2")
47 (defglextfun "CompressedTexSubImage2DARB" compressed-tex-sub-image-2d-arb
48 :return "void" :args
49 ((:name |target| :type |TextureTarget| :direction :in)
50 (:name |level| :type |CheckedInt32| :direction :in)
51 (:name |xoffset| :type |CheckedInt32| :direction :in)
52 (:name |yoffset| :type |CheckedInt32| :direction :in)
53 (:name |width| :type |SizeI| :direction :in)
54 (:name |height| :type |SizeI| :direction :in)
55 (:name |format| :type |PixelFormat| :direction :in)
56 (:name |imageSize| :type |SizeI| :direction :in)
57 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
58 imagesize))
59 :category "ARB_texture_compression" :deprecated nil :version "1.2")
60 (defglextfun "CompressedTexSubImage3DARB" compressed-tex-sub-image-3d-arb
61 :return "void" :args
62 ((:name |target| :type |TextureTarget| :direction :in)
63 (:name |level| :type |CheckedInt32| :direction :in)
64 (:name |xoffset| :type |CheckedInt32| :direction :in)
65 (:name |yoffset| :type |CheckedInt32| :direction :in)
66 (:name |zoffset| :type |CheckedInt32| :direction :in)
67 (:name |width| :type |SizeI| :direction :in)
68 (:name |height| :type |SizeI| :direction :in)
69 (:name |depth| :type |SizeI| :direction :in)
70 (:name |format| :type |PixelFormat| :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" :deprecated nil :version "1.2")
75 (defglextfun "CompressedTexImage1DARB" compressed-tex-image-1d-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 |border| :type |CheckedInt32| :direction :in)
82 (:name |imageSize| :type |SizeI| :direction :in)
83 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
84 imagesize))
85 :category "ARB_texture_compression" :deprecated nil :version "1.2")
86 (defglextfun "CompressedTexImage2DARB" compressed-tex-image-2d-arb :return
87 "void" :args
88 ((:name |target| :type |TextureTarget| :direction :in)
89 (:name |level| :type |CheckedInt32| :direction :in)
90 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
91 (:name |width| :type |SizeI| :direction :in)
92 (:name |height| :type |SizeI| :direction :in)
93 (:name |border| :type |CheckedInt32| :direction :in)
94 (:name |imageSize| :type |SizeI| :direction :in)
95 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
96 imagesize))
97 :category "ARB_texture_compression" :deprecated nil :version "1.2")
98 (defglextfun "CompressedTexImage3DARB" compressed-tex-image-3d-arb :return
99 "void" :args
100 ((:name |target| :type |TextureTarget| :direction :in)
101 (:name |level| :type |CheckedInt32| :direction :in)
102 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
103 (:name |width| :type |SizeI| :direction :in)
104 (:name |height| :type |SizeI| :direction :in)
105 (:name |depth| :type |SizeI| :direction :in)
106 (:name |border| :type |CheckedInt32| :direction :in)
107 (:name |imageSize| :type |SizeI| :direction :in)
108 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
109 imagesize))
110 :category "ARB_texture_compression" :deprecated nil :version "1.2")
111 (make-extension-loader |ARB_texture_compression|
112 (("GetCompressedTexImageARB" get-compressed-tex-image-arb :return "void" :args
113 ((:name |target| :type |TextureTarget| :direction :in)
114 (:name |level| :type |CheckedInt32| :direction :in)
115 (:name |img| :type |CompressedTextureARB| :direction :out :array t :size
116 (|target| |level|)))
117 :category "ARB_texture_compression" :deprecated nil :version "1.2")
118 ("CompressedTexSubImage1DARB" compressed-tex-sub-image-1d-arb :return "void"
119 :args
120 ((:name |target| :type |TextureTarget| :direction :in)
121 (:name |level| :type |CheckedInt32| :direction :in)
122 (:name |xoffset| :type |CheckedInt32| :direction :in)
123 (:name |width| :type |SizeI| :direction :in)
124 (:name |format| :type |PixelFormat| :direction :in)
125 (:name |imageSize| :type |SizeI| :direction :in)
126 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
127 imagesize))
128 :category "ARB_texture_compression" :deprecated nil :version "1.2")
129 ("CompressedTexSubImage2DARB" compressed-tex-sub-image-2d-arb :return "void"
130 :args
131 ((:name |target| :type |TextureTarget| :direction :in)
132 (:name |level| :type |CheckedInt32| :direction :in)
133 (:name |xoffset| :type |CheckedInt32| :direction :in)
134 (:name |yoffset| :type |CheckedInt32| :direction :in)
135 (:name |width| :type |SizeI| :direction :in)
136 (:name |height| :type |SizeI| :direction :in)
137 (:name |format| :type |PixelFormat| :direction :in)
138 (:name |imageSize| :type |SizeI| :direction :in)
139 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
140 imagesize))
141 :category "ARB_texture_compression" :deprecated nil :version "1.2")
142 ("CompressedTexSubImage3DARB" compressed-tex-sub-image-3d-arb :return "void"
143 :args
144 ((:name |target| :type |TextureTarget| :direction :in)
145 (:name |level| :type |CheckedInt32| :direction :in)
146 (:name |xoffset| :type |CheckedInt32| :direction :in)
147 (:name |yoffset| :type |CheckedInt32| :direction :in)
148 (:name |zoffset| :type |CheckedInt32| :direction :in)
149 (:name |width| :type |SizeI| :direction :in)
150 (:name |height| :type |SizeI| :direction :in)
151 (:name |depth| :type |SizeI| :direction :in)
152 (:name |format| :type |PixelFormat| :direction :in)
153 (:name |imageSize| :type |SizeI| :direction :in)
154 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
155 imagesize))
156 :category "ARB_texture_compression" :deprecated nil :version "1.2")
157 ("CompressedTexImage1DARB" compressed-tex-image-1d-arb :return "void" :args
158 ((:name |target| :type |TextureTarget| :direction :in)
159 (:name |level| :type |CheckedInt32| :direction :in)
160 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
161 (:name |width| :type |SizeI| :direction :in)
162 (:name |border| :type |CheckedInt32| :direction :in)
163 (:name |imageSize| :type |SizeI| :direction :in)
164 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
165 imagesize))
166 :category "ARB_texture_compression" :deprecated nil :version "1.2")
167 ("CompressedTexImage2DARB" compressed-tex-image-2d-arb :return "void" :args
168 ((:name |target| :type |TextureTarget| :direction :in)
169 (:name |level| :type |CheckedInt32| :direction :in)
170 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
171 (:name |width| :type |SizeI| :direction :in)
172 (:name |height| :type |SizeI| :direction :in)
173 (:name |border| :type |CheckedInt32| :direction :in)
174 (:name |imageSize| :type |SizeI| :direction :in)
175 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
176 imagesize))
177 :category "ARB_texture_compression" :deprecated nil :version "1.2")
178 ("CompressedTexImage3DARB" compressed-tex-image-3d-arb :return "void" :args
179 ((:name |target| :type |TextureTarget| :direction :in)
180 (:name |level| :type |CheckedInt32| :direction :in)
181 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
182 (:name |width| :type |SizeI| :direction :in)
183 (:name |height| :type |SizeI| :direction :in)
184 (:name |depth| :type |SizeI| :direction :in)
185 (:name |border| :type |CheckedInt32| :direction :in)
186 (:name |imageSize| :type |SizeI| :direction :in)
187 (:name |data| :type |CompressedTextureARB| :direction :in :array t :size
188 imagesize))
189 :category "ARB_texture_compression" :deprecated nil :version "1.2")))