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