Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-ext_copy_texture.lisp
blobf6f084c53c1a5bbc1cc62224e260d9fb07a04d19
2 (in-package #:gl)
4 ;;;; EXT_copy_texture
6 (defglextfun
7 (("CopyTexSubImage3DEXT" copy-tex-sub-image-3d-ext) :args
8 ((:name |target| :type |TextureTarget| :direction :in)
9 (:name |level| :type |CheckedInt32| :direction :in)
10 (:name |xoffset| :type |CheckedInt32| :direction :in)
11 (:name |yoffset| :type |CheckedInt32| :direction :in)
12 (:name |zoffset| :type |CheckedInt32| :direction :in)
13 (:name |x| :type |WinCoord| :direction :in)
14 (:name |y| :type |WinCoord| :direction :in)
15 (:name |width| :type |SizeI| :direction :in)
16 (:name |height| :type |SizeI| :direction :in))
17 :return ("void") :category ("EXT_copy_texture") :version ("1.0") :glxflags
18 ("EXT") :glxropcode ("4123") :extension nil :alias ("CopyTexSubImage3D")
19 :glsalias ("CopyTexSubImage3D")))
20 (defglextfun
21 (("CopyTexSubImage2DEXT" copy-tex-sub-image-2d-ext) :args
22 ((:name |target| :type |TextureTarget| :direction :in)
23 (:name |level| :type |CheckedInt32| :direction :in)
24 (:name |xoffset| :type |CheckedInt32| :direction :in)
25 (:name |yoffset| :type |CheckedInt32| :direction :in)
26 (:name |x| :type |WinCoord| :direction :in)
27 (:name |y| :type |WinCoord| :direction :in)
28 (:name |width| :type |SizeI| :direction :in)
29 (:name |height| :type |SizeI| :direction :in))
30 :return ("void") :category ("EXT_copy_texture") :version ("1.0") :glxflags
31 ("EXT") :glxropcode ("4122") :extension nil :alias ("CopyTexSubImage2D")
32 :glsalias ("CopyTexSubImage2D")))
33 (defglextfun
34 (("CopyTexSubImage1DEXT" copy-tex-sub-image-1d-ext) :args
35 ((:name |target| :type |TextureTarget| :direction :in)
36 (:name |level| :type |CheckedInt32| :direction :in)
37 (:name |xoffset| :type |CheckedInt32| :direction :in)
38 (:name |x| :type |WinCoord| :direction :in)
39 (:name |y| :type |WinCoord| :direction :in)
40 (:name |width| :type |SizeI| :direction :in))
41 :return ("void") :category ("EXT_copy_texture") :version ("1.0") :glxflags
42 ("EXT") :glxropcode ("4121") :extension nil :alias ("CopyTexSubImage1D")
43 :glsalias ("CopyTexSubImage1D")))
44 (defglextfun
45 (("CopyTexImage2DEXT" copy-tex-image-2d-ext) :args
46 ((:name |target| :type |TextureTarget| :direction :in)
47 (:name |level| :type |CheckedInt32| :direction :in)
48 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
49 (:name |x| :type |WinCoord| :direction :in)
50 (:name |y| :type |WinCoord| :direction :in)
51 (:name |width| :type |SizeI| :direction :in)
52 (:name |height| :type |SizeI| :direction :in)
53 (:name |border| :type |CheckedInt32| :direction :in))
54 :return ("void") :category ("EXT_copy_texture") :version ("1.0") :glxflags
55 ("EXT") :glxropcode ("4120") :extension nil :alias ("CopyTexImage2D")
56 :glsalias ("CopyTexImage2D")))
57 (defglextfun
58 (("CopyTexImage1DEXT" copy-tex-image-1d-ext) :args
59 ((:name |target| :type |TextureTarget| :direction :in)
60 (:name |level| :type |CheckedInt32| :direction :in)
61 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
62 (:name |x| :type |WinCoord| :direction :in)
63 (:name |y| :type |WinCoord| :direction :in)
64 (:name |width| :type |SizeI| :direction :in)
65 (:name |border| :type |CheckedInt32| :direction :in))
66 :return ("void") :category ("EXT_copy_texture") :version ("1.0") :glxflags
67 ("EXT") :glxropcode ("4119") :extension nil :alias ("CopyTexImage1D")
68 :glsalias ("CopyTexImage1D")))