Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-arb_vertex_blend.lisp
blob81d6628258c1e5b9ecf0bdd9261828fb9a3491e7
2 (in-package #:gl)
4 ;;;; ARB_vertex_blend
6 (defconstant +max-vertex-units-arb+ #x86A4)
7 (defconstant +active-vertex-units-arb+ #x86A5)
8 (defconstant +weight-sum-unity-arb+ #x86A6)
9 (defconstant +vertex-blend-arb+ #x86A7)
10 (defconstant +current-weight-arb+ #x86A8)
11 (defconstant +weight-array-type-arb+ #x86A9)
12 (defconstant +weight-array-stride-arb+ #x86AA)
13 (defconstant +weight-array-size-arb+ #x86AB)
14 (defconstant +weight-array-pointer-arb+ #x86AC)
15 (defconstant +weight-array-arb+ #x86AD)
16 (defconstant +modelview0-arb+ #x1700)
17 (defconstant +modelview1-arb+ #x850A)
18 (defconstant +modelview2-arb+ #x8722)
19 (defconstant +modelview3-arb+ #x8723)
20 (defconstant +modelview4-arb+ #x8724)
21 (defconstant +modelview5-arb+ #x8725)
22 (defconstant +modelview6-arb+ #x8726)
23 (defconstant +modelview7-arb+ #x8727)
24 (defconstant +modelview8-arb+ #x8728)
25 (defconstant +modelview9-arb+ #x8729)
26 (defconstant +modelview10-arb+ #x872A)
27 (defconstant +modelview11-arb+ #x872B)
28 (defconstant +modelview12-arb+ #x872C)
29 (defconstant +modelview13-arb+ #x872D)
30 (defconstant +modelview14-arb+ #x872E)
31 (defconstant +modelview15-arb+ #x872F)
32 (defconstant +modelview16-arb+ #x8730)
33 (defconstant +modelview17-arb+ #x8731)
34 (defconstant +modelview18-arb+ #x8732)
35 (defconstant +modelview19-arb+ #x8733)
36 (defconstant +modelview20-arb+ #x8734)
37 (defconstant +modelview21-arb+ #x8735)
38 (defconstant +modelview22-arb+ #x8736)
39 (defconstant +modelview23-arb+ #x8737)
40 (defconstant +modelview24-arb+ #x8738)
41 (defconstant +modelview25-arb+ #x8739)
42 (defconstant +modelview26-arb+ #x873A)
43 (defconstant +modelview27-arb+ #x873B)
44 (defconstant +modelview28-arb+ #x873C)
45 (defconstant +modelview29-arb+ #x873D)
46 (defconstant +modelview30-arb+ #x873E)
47 (defconstant +modelview31-arb+ #x873F)
48 (defglextfun
49 (("VertexBlendARB" vertex-blend-arb) :args
50 ((:name |count| :type |Int32| :direction :in)) :return ("void") :category
51 ("ARB_vertex_blend") :version ("1.1") :extension nil :glxropcode ("226")
52 :glxflags ("ignore") :glsopcode ("0x020F") :offset ("?")))
53 (defglextfun
54 (("WeightPointerARB" weight-pointer-arb) :args
55 ((:name |size| :type |Int32| :direction :in)
56 (:name |type| :type |WeightPointerTypeARB| :direction :in)
57 (:name |stride| :type |SizeI| :direction :in)
58 (:name |pointer| :type |Void| :direction :in :array t :size
59 (|type| |stride|) :retained t))
60 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
61 nil :dlflags ("notlistable") :glxflags ("ignore") :glsflags ("client")
62 :glsopcode ("0x020E") :offset ("?")))
63 (defglextfun
64 (("WeightuivARB" weight-uiv-arb) :args
65 ((:name |size| :type |Int32| :direction :in)
66 (:name |weights| :type |UInt32| :direction :in :array t :size size))
67 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
68 nil :glxropcode ("225") :glxflags ("ignore") :glsopcode ("0x020D") :offset
69 ("?")))
70 (defglextfun
71 (("WeightusvARB" weight-usv-arb) :args
72 ((:name |size| :type |Int32| :direction :in)
73 (:name |weights| :type |UInt16| :direction :in :array t :size size))
74 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
75 nil :glxropcode ("223") :glxflags ("ignore") :glsopcode ("0x020C") :offset
76 ("?")))
77 (defglextfun
78 (("WeightubvARB" weight-ubv-arb) :args
79 ((:name |size| :type |Int32| :direction :in)
80 (:name |weights| :type |UInt8| :direction :in :array t :size size))
81 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
82 nil :glxropcode ("221") :glxflags ("ignore") :glsopcode ("0x020B") :offset
83 ("?")))
84 (defglextfun
85 (("WeightdvARB" weight-dv-arb) :args
86 ((:name |size| :type |Int32| :direction :in)
87 (:name |weights| :type |Float64| :direction :in :array t :size size))
88 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
89 nil :glxropcode ("228") :glxflags ("ignore") :glsopcode ("0x020A") :offset
90 ("?")))
91 (defglextfun
92 (("WeightfvARB" weight-fv-arb) :args
93 ((:name |size| :type |Int32| :direction :in)
94 (:name |weights| :type |Float32| :direction :in :array t :size size))
95 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
96 nil :glxropcode ("227") :glxflags ("ignore") :glsopcode ("0x0209") :offset
97 ("?")))
98 (defglextfun
99 (("WeightivARB" weight-iv-arb) :args
100 ((:name |size| :type |Int32| :direction :in)
101 (:name |weights| :type |Int32| :direction :in :array t :size size))
102 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
103 nil :glxropcode ("224") :glxflags ("ignore") :glsopcode ("0x0208") :offset
104 ("?")))
105 (defglextfun
106 (("WeightsvARB" weight-sv-arb) :args
107 ((:name |size| :type |Int32| :direction :in)
108 (:name |weights| :type |Int16| :direction :in :array t :size size))
109 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
110 nil :glxropcode ("222") :glxflags ("ignore") :glsopcode ("0x0207") :offset
111 ("?")))
112 (defglextfun
113 (("WeightbvARB" weight-bv-arb) :args
114 ((:name |size| :type |Int32| :direction :in)
115 (:name |weights| :type |Int8| :direction :in :array t :size size))
116 :return ("void") :category ("ARB_vertex_blend") :version ("1.1") :extension
117 nil :glxropcode ("220") :glxflags ("ignore") :glsopcode ("0x0206") :offset
118 ("?")))