bitmask tweak and grid generator
[cl-glfw/dh.git] / lib / opengl-arb_vertex_shader.lisp
blob88a0e4c768658af72dab92c8b5d460e1e5c630c2
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 "GetAttribLocationARB" get-attrib-location-arb :return "Int32"
14 :args
15 ((:name |programObj| :type |handleARB| :direction :in)
16 (:name |name| :type |charARB| :direction :in :array t))
17 :category "ARB_vertex_shader" :version "1.2")
18 (defglextfun "GetActiveAttribARB" get-active-attrib-arb :return "void" :args
19 ((:name |programObj| :type |handleARB| :direction :in)
20 (:name |index| :type |UInt32| :direction :in)
21 (:name |maxLength| :type |SizeI| :direction :in)
22 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
23 (:name |size| :type |Int32| :direction :out :array t :size #x1)
24 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
25 (:name |name| :type |charARB| :direction :out :array t))
26 :category "ARB_vertex_shader" :version "1.2")
27 (defglextfun "BindAttribLocationARB" bind-attrib-location-arb :return "void"
28 :args
29 ((:name |programObj| :type |handleARB| :direction :in)
30 (:name |index| :type |UInt32| :direction :in)
31 (:name |name| :type |charARB| :direction :in :array t))
32 :category "ARB_vertex_shader" :version "1.2")