Fixed the nil names of the generator.
[cl-glfw/dh.git] / lib / opengl-ext_subtexture.lisp
blob94e7fe7dee8e2fce7231bd45068727c3ed1eb268
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
8 (("TexSubImage2DEXT" tex-sub-image-2d-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 |width| :type |SizeI| :direction :in)
14 (:name |height| :type |SizeI| :direction :in)
15 (:name |format| :type |PixelFormat| :direction :in)
16 (:name |type| :type |PixelType| :direction :in)
17 (:name |pixels| :type |Void| :direction :in :array t :size
18 (|format| |type| |width| |height|)))
19 :return ("void") :category ("EXT_subtexture") :dlflags ("handcode") :glxflags
20 ("client-handcode" "server-handcode" "EXT") :version ("1.0") :glxropcode
21 ("4100") :extension nil :alias ("TexSubImage2D") :glsalias ("TexSubImage2D")))
22 (defglextfun
23 (("TexSubImage1DEXT" tex-sub-image-1d-ext) :args
24 ((:name |target| :type |TextureTarget| :direction :in)
25 (:name |level| :type |CheckedInt32| :direction :in)
26 (:name |xoffset| :type |CheckedInt32| :direction :in)
27 (:name |width| :type |SizeI| :direction :in)
28 (:name |format| :type |PixelFormat| :direction :in)
29 (:name |type| :type |PixelType| :direction :in)
30 (:name |pixels| :type |Void| :direction :in :array t :size
31 (|format| |type| |width|)))
32 :return ("void") :category ("EXT_subtexture") :dlflags ("handcode") :glxflags
33 ("client-handcode" "server-handcode" "EXT") :version ("1.0") :glxropcode
34 ("4099") :extension nil :alias ("TexSubImage1D") :glsalias ("TexSubImage1D")))