Updated README
[cl-glfw.git] / lib / opengl-ati_vertex_attrib_array_object.lisp
blobea0f4296b5930ed92ea40776d5b924b3dbb18edb
2 (in-package #:gl)
4 ;;;; ATI_vertex_attrib_array_object
6 (defglextfun
7 (("GetVertexAttribArrayObjectivATI" get-vertex-attrib-array-object-iv-ati)
8 :args
9 ((:name |index| :type |UInt32| :direction :in)
10 (:name |pname| :type |ArrayObjectPNameATI| :direction :in)
11 (:name |params| :type |Int32| :direction :out :array t :size pname))
12 :return ("void") :category ("ATI_vertex_attrib_array_object") :dlflags
13 ("notlistable") :version ("1.2") :extension nil :glxsingle ("?") :glxflags
14 ("ignore") :glsflags ("get") :glsopcode ("?") :offset ("?")))
15 (defglextfun
16 (("GetVertexAttribArrayObjectfvATI" get-vertex-attrib-array-object-fv-ati)
17 :args
18 ((:name |index| :type |UInt32| :direction :in)
19 (:name |pname| :type |ArrayObjectPNameATI| :direction :in)
20 (:name |params| :type |Float32| :direction :out :array t :size pname))
21 :return ("void") :category ("ATI_vertex_attrib_array_object") :dlflags
22 ("notlistable") :version ("1.2") :extension nil :glxsingle ("?") :glxflags
23 ("ignore") :glsflags ("get") :glsopcode ("?") :offset ("?")))
24 (defglextfun
25 (("VertexAttribArrayObjectATI" vertex-attrib-array-object-ati) :args
26 ((:name |index| :type |UInt32| :direction :in)
27 (:name |size| :type |Int32| :direction :in)
28 (:name |type| :type |VertexAttribPointerTypeARB| :direction :in)
29 (:name |normalized| :type |Boolean| :direction :in)
30 (:name |stride| :type |SizeI| :direction :in)
31 (:name |buffer| :type |UInt32| :direction :in)
32 (:name |offset| :type |UInt32| :direction :in))
33 :return ("void") :category ("ATI_vertex_attrib_array_object") :version
34 ("1.2") :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode
35 ("?") :offset ("?")))