Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-sgis_texture4d.lisp
blob68e7e13725a42eea8cec233d09cac783afd4445d
2 (in-package #:gl)
4 ;;;; SGIS_texture4D
6 (defglextfun
7 (("TexSubImage4DSGIS" tex-sub-image-4d-sgis) :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 |woffset| :type |CheckedInt32| :direction :in)
14 (:name |width| :type |SizeI| :direction :in)
15 (:name |height| :type |SizeI| :direction :in)
16 (:name |depth| :type |SizeI| :direction :in)
17 (:name |size4d| :type |SizeI| :direction :in)
18 (:name |format| :type |PixelFormat| :direction :in)
19 (:name |type| :type |PixelType| :direction :in)
20 (:name |pixels| :type |Void| :direction :in :array t :size
21 (|format| |type| |width| |height| |depth| |size4d|)))
22 :return ("void") :category ("SGIS_texture4D") :dlflags ("handcode") :glxflags
23 ("client-handcode" "server-handcode" "SGI") :version ("1.0") :glxropcode
24 ("2058") :extension nil :glsflags ("pixel-unpack") :glsopcode ("0x016F")
25 :offset ("438")))
26 (defglextfun
27 (("TexImage4DSGIS" tex-image-4d-sgis) :args
28 ((:name |target| :type |TextureTarget| :direction :in)
29 (:name |level| :type |CheckedInt32| :direction :in)
30 (:name |internalformat| :type |PixelInternalFormat| :direction :in)
31 (:name |width| :type |SizeI| :direction :in)
32 (:name |height| :type |SizeI| :direction :in)
33 (:name |depth| :type |SizeI| :direction :in)
34 (:name |size4d| :type |SizeI| :direction :in)
35 (:name |border| :type |CheckedInt32| :direction :in)
36 (:name |format| :type |PixelFormat| :direction :in)
37 (:name |type| :type |PixelType| :direction :in)
38 (:name |pixels| :type |Void| :direction :in :array t :size
39 (|format| |type| |width| |height| |depth| |size4d|)))
40 :return ("void") :category ("SGIS_texture4D") :dlflags ("handcode") :glxflags
41 ("client-handcode" "server-handcode" "SGI") :version ("1.0") :glxropcode
42 ("2057") :extension nil :glsflags ("pixel-null" "pixel-unpack") :glsopcode
43 ("0x016E") :offset ("437")))