Added FTGL for convenience
[cl-glfw.git] / lib / opengl-ext_subtexture.lisp
blob85e9b9543674ede8a63576c271ae7d36eb36933c
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")