Fix for callbacks under windows from Andrew Lyon.
[cl-glfw.git] / lib / opengl-arb_vertex_shader.lisp
blob92198ce186a8298cafc8418e124a74b24e681de3
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-vertex-texture-image-units-arb+ #x8B4C)
11 (defconstant +max-combined-texture-image-units-arb+ #x8B4D)
12 (defconstant +object-active-attributes-arb+ #x8B89)
13 (defconstant +object-active-attribute-max-length-arb+ #x8B8A)
14 (defglextfun "GetAttribLocationARB" get-attrib-location-arb :return "Int32"
15 :args
16 ((:name |programObj| :type |handleARB| :direction :in)
17 (:name |name| :type |charARB| :direction :in :array t))
18 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
19 (defglextfun "GetActiveAttribARB" get-active-attrib-arb :return "void" :args
20 ((:name |programObj| :type |handleARB| :direction :in)
21 (:name |index| :type |UInt32| :direction :in)
22 (:name |maxLength| :type |SizeI| :direction :in)
23 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
24 (:name |size| :type |Int32| :direction :out :array t :size #x1)
25 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
26 (:name |name| :type |charARB| :direction :out :array t))
27 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
28 (defglextfun "BindAttribLocationARB" bind-attrib-location-arb :return "void"
29 :args
30 ((:name |programObj| :type |handleARB| :direction :in)
31 (:name |index| :type |UInt32| :direction :in)
32 (:name |name| :type |charARB| :direction :in :array t))
33 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
34 (make-extension-loader |ARB_vertex_shader|
35 (("GetAttribLocationARB" get-attrib-location-arb :return "Int32" :args
36 ((:name |programObj| :type |handleARB| :direction :in)
37 (:name |name| :type |charARB| :direction :in :array t))
38 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
39 ("GetActiveAttribARB" get-active-attrib-arb :return "void" :args
40 ((:name |programObj| :type |handleARB| :direction :in)
41 (:name |index| :type |UInt32| :direction :in)
42 (:name |maxLength| :type |SizeI| :direction :in)
43 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
44 (:name |size| :type |Int32| :direction :out :array t :size #x1)
45 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
46 (:name |name| :type |charARB| :direction :out :array t))
47 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
48 ("BindAttribLocationARB" bind-attrib-location-arb :return "void" :args
49 ((:name |programObj| :type |handleARB| :direction :in)
50 (:name |index| :type |UInt32| :direction :in)
51 (:name |name| :type |charARB| :direction :in :array t))
52 :category "ARB_vertex_shader" :deprecated nil :version "1.2")))