Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-arb_vertex_shader.lisp
blobccfabf27847d3a3cbdd2e4b813e41e1c98524b35
2 (in-package #:gl)
4 ;;;; ARB_vertex_shader
6 (defconstant +vertex-shader-arb+ #x8B31)
7 (defconstant +max-vertex-uniform-components-arb+ #x8B4A)
8 (defconstant +max-varying-floats-arb+ #x8B4B)
9 (defconstant +max-combined-texture-image-units-arb+ #x8B4D)
10 (defconstant +object-active-attributes-arb+ #x8B89)
11 (defconstant +object-active-attribute-max-length-arb+ #x8B8A)
12 (defglextfun
13 (("GetAttribLocationARB" get-attrib-location-arb) :args
14 ((:name |programObj| :type |handleARB| :direction :in)
15 (:name |name| :type |charARB| :direction :in :array t))
16 :return ("Int32") :category ("ARB_vertex_shader") :dlflags ("notlistable")
17 :version ("1.2") :extension nil :glxsingle ("?") :glxflags ("ignore") :alias
18 ("GetAttribLocation") :glsalias ("GetAttribLocation")))
19 (defglextfun
20 (("GetActiveAttribARB" get-active-attrib-arb) :args
21 ((:name |programObj| :type |handleARB| :direction :in)
22 (:name |index| :type |UInt32| :direction :in)
23 (:name |maxLength| :type |SizeI| :direction :in)
24 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
25 (:name |size| :type |Int32| :direction :out :array t :size #x1)
26 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
27 (:name |name| :type |charARB| :direction :out :array t))
28 :return ("void") :category ("ARB_vertex_shader") :dlflags ("notlistable")
29 :version ("1.2") :extension nil :glxsingle ("?") :glxflags ("ignore") :alias
30 ("GetActiveAttrib") :glsalias ("GetActiveAttrib")))
31 (defglextfun
32 (("BindAttribLocationARB" bind-attrib-location-arb) :args
33 ((:name |programObj| :type |handleARB| :direction :in)
34 (:name |index| :type |UInt32| :direction :in)
35 (:name |name| :type |charARB| :direction :in :array t))
36 :return ("void") :category ("ARB_vertex_shader") :version ("1.2") :extension
37 nil :glxropcode ("?") :glxflags ("ignore") :alias ("BindAttribLocation")
38 :glsalias ("BindAttribLocation")))