298fb011ba3004d41d810aed61029896cfd7eec9
[cl-glfw.git] / lib / opengl-ext_copy_texture.lisp
blob298fb011ba3004d41d810aed61029896cfd7eec9
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 "CopyTexSubImage3DEXT" copy-tex-sub-image-3d-ext :return "void"
8 :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 :category "EXT_copy_texture" :deprecated nil :version "1.0")
19 (defglextfun "CopyTexSubImage2DEXT" copy-tex-sub-image-2d-ext :return "void"
20 :args
21 ((:name |target| :type |TextureTarget| :direction :in)
22 (:name |level| :type |CheckedInt32| :direction :in)
23 (:name |xoffset| :type |CheckedInt32| :direction :in)
24 (:name |yoffset| :type |CheckedInt32| :direction :in)
25 (:name |x| :type |WinCoord| :direction :in)
26 (:name |y| :type |WinCoord| :direction :in)
27 (:name |width| :type |SizeI| :direction :in)
28 (:name |height| :type |SizeI| :direction :in))
29 :category "EXT_copy_texture" :deprecated nil :version "1.0")
30 (defglextfun "CopyTexSubImage1DEXT" copy-tex-sub-image-1d-ext :return "void"
31 :args
32 ((:name |target| :type |TextureTarget| :direction :in)
33 (:name |level| :type |CheckedInt32| :direction :in)
34 (:name |xoffset| :type |CheckedInt32| :direction :in)
35 (:name |x| :type |WinCoord| :direction :in)
36 (:name |y| :type |WinCoord| :direction :in)
37 (:name |width| :type |SizeI| :direction :in))
38 :category "EXT_copy_texture" :deprecated nil :version "1.0")
39 (defglextfun "CopyTexImage2DEXT" copy-tex-image-2d-ext :return "void" :args
40 ((:name |target| :type |TextureTarget| :direction :in)
41 (:name |level| :type |CheckedInt32| :direction :in)
42 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
43 (:name |x| :type |WinCoord| :direction :in)
44 (:name |y| :type |WinCoord| :direction :in)
45 (:name |width| :type |SizeI| :direction :in)
46 (:name |height| :type |SizeI| :direction :in)
47 (:name |border| :type |CheckedInt32| :direction :in))
48 :category "EXT_copy_texture" :deprecated nil :version "1.0")
49 (defglextfun "CopyTexImage1DEXT" copy-tex-image-1d-ext :return "void" :args
50 ((:name |target| :type |TextureTarget| :direction :in)
51 (:name |level| :type |CheckedInt32| :direction :in)
52 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
53 (:name |x| :type |WinCoord| :direction :in)
54 (:name |y| :type |WinCoord| :direction :in)
55 (:name |width| :type |SizeI| :direction :in)
56 (:name |border| :type |CheckedInt32| :direction :in))
57 :category "EXT_copy_texture" :deprecated nil :version "1.0")