Re-ran generator for OpenGL 4.1 and new extensions
[cl-glfw.git] / lib / opengl-ext_subtexture.lisp
blob5fbfb81d3711276059747ff51c1b86cba290d6f5
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_subtexture
7 (defglextfun "TexSubImage2DEXT" tex-sub-image-2d-ext :return "void" :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 |width| :type |SizeI| :direction :in)
13 (:name |height| :type |SizeI| :direction :in)
14 (:name |format| :type |PixelFormat| :direction :in)
15 (:name |type| :type |PixelType| :direction :in)
16 (:name |pixels| :type |Void| :direction :in :array t :size
17 (|format| |type| |width| |height|)))
18 :category "EXT_subtexture" :deprecated nil :version "1.0")
19 (defglextfun "TexSubImage1DEXT" tex-sub-image-1d-ext :return "void" :args
20 ((:name |target| :type |TextureTarget| :direction :in)
21 (:name |level| :type |CheckedInt32| :direction :in)
22 (:name |xoffset| :type |CheckedInt32| :direction :in)
23 (:name |width| :type |SizeI| :direction :in)
24 (:name |format| :type |PixelFormat| :direction :in)
25 (:name |type| :type |PixelType| :direction :in)
26 (:name |pixels| :type |Void| :direction :in :array t :size
27 (|format| |type| |width|)))
28 :category "EXT_subtexture" :deprecated nil :version "1.0")
29 (make-extension-loader |EXT_subtexture|
30 (("TexSubImage2DEXT" tex-sub-image-2d-ext :return "void" :args
31 ((:name |target| :type |TextureTarget| :direction :in)
32 (:name |level| :type |CheckedInt32| :direction :in)
33 (:name |xoffset| :type |CheckedInt32| :direction :in)
34 (:name |yoffset| :type |CheckedInt32| :direction :in)
35 (:name |width| :type |SizeI| :direction :in)
36 (:name |height| :type |SizeI| :direction :in)
37 (:name |format| :type |PixelFormat| :direction :in)
38 (:name |type| :type |PixelType| :direction :in)
39 (:name |pixels| :type |Void| :direction :in :array t :size
40 (|format| |type| |width| |height|)))
41 :category "EXT_subtexture" :deprecated nil :version "1.0")
42 ("TexSubImage1DEXT" tex-sub-image-1d-ext :return "void" :args
43 ((:name |target| :type |TextureTarget| :direction :in)
44 (:name |level| :type |CheckedInt32| :direction :in)
45 (:name |xoffset| :type |CheckedInt32| :direction :in)
46 (:name |width| :type |SizeI| :direction :in)
47 (:name |format| :type |PixelFormat| :direction :in)
48 (:name |type| :type |PixelType| :direction :in)
49 (:name |pixels| :type |Void| :direction :in :array t :size
50 (|format| |type| |width|)))
51 :category "EXT_subtexture" :deprecated nil :version "1.0")))