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