Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-version_1_5.lisp
blob591e482bfdc094ba9a974d4032757acb8b21ea6f
2 (in-package #:gl)
4 ;;;; VERSION_1_5
6 (defconstant +buffer-size+ #x8764)
7 (defconstant +buffer-usage+ #x8765)
8 (defconstant +query-counter-bits+ #x8864)
9 (defconstant +current-query+ #x8865)
10 (defconstant +query-result+ #x8866)
11 (defconstant +query-result-available+ #x8867)
12 (defconstant +array-buffer+ #x8892)
13 (defconstant +element-array-buffer+ #x8893)
14 (defconstant +array-buffer-binding+ #x8894)
15 (defconstant +element-array-buffer-binding+ #x8895)
16 (defconstant +vertex-array-buffer-binding+ #x8896)
17 (defconstant +normal-array-buffer-binding+ #x8897)
18 (defconstant +color-array-buffer-binding+ #x8898)
19 (defconstant +index-array-buffer-binding+ #x8899)
20 (defconstant +texture-coord-array-buffer-binding+ #x889A)
21 (defconstant +edge-flag-array-buffer-binding+ #x889B)
22 (defconstant +secondary-color-array-buffer-binding+ #x889C)
23 (defconstant +fog-coordinate-array-buffer-binding+ #x889D)
24 (defconstant +weight-array-buffer-binding+ #x889E)
25 (defconstant +vertex-attrib-array-buffer-binding+ #x889F)
26 (defconstant +read-only+ #x88B8)
27 (defconstant +write-only+ #x88B9)
28 (defconstant +read-write+ #x88BA)
29 (defconstant +buffer-access+ #x88BB)
30 (defconstant +buffer-mapped+ #x88BC)
31 (defconstant +buffer-map-pointer+ #x88BD)
32 (defconstant +stream-draw+ #x88E0)
33 (defconstant +stream-read+ #x88E1)
34 (defconstant +stream-copy+ #x88E2)
35 (defconstant +static-draw+ #x88E4)
36 (defconstant +static-read+ #x88E5)
37 (defconstant +static-copy+ #x88E6)
38 (defconstant +dynamic-draw+ #x88E8)
39 (defconstant +dynamic-read+ #x88E9)
40 (defconstant +dynamic-copy+ #x88EA)
41 (defconstant +samples-passed+ #x8914)
42 (defconstant +fog-coord-src+ #x8450)
43 (defconstant +fog-coord+ #x8451)
44 (defconstant +current-fog-coord+ #x8453)
45 (defconstant +fog-coord-array-type+ #x8454)
46 (defconstant +fog-coord-array-stride+ #x8455)
47 (defconstant +fog-coord-array-pointer+ #x8456)
48 (defconstant +fog-coord-array+ #x8457)
49 (defconstant +fog-coord-array-buffer-binding+ #x889D)
50 (defconstant +src0-rgb+ #x8580)
51 (defconstant +src1-rgb+ #x8581)
52 (defconstant +src2-rgb+ #x8582)
53 (defconstant +src0-alpha+ #x8588)
54 (defconstant +src1-alpha+ #x8589)
55 (defconstant +src2-alpha+ #x858A)
56 (defglfun
57 (("GetBufferPointerv" get-buffer-pointerv) :args
58 ((:name |target| :type |BufferTargetARB| :direction :in)
59 (:name |pname| :type |BufferPointerNameARB| :direction :in)
60 (:name |params| :type |VoidPointer| :direction :out :array t :size #x1))
61 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
62 ("1.5") :extension nil :glxsingle ("?") :glxflags ("ignore") :glsflags
63 ("get") :glsopcode ("?") :offset ("694")))
64 (defglfun
65 (("GetBufferParameteriv" get-buffer-parameteriv) :args
66 ((:name |target| :type |BufferTargetARB| :direction :in)
67 (:name |pname| :type |BufferPNameARB| :direction :in)
68 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
69 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
70 ("1.5") :extension nil :glxsingle ("?") :glxflags ("ignore") :glsflags
71 ("get") :glsopcode ("?") :offset ("693")))
72 (defglfun
73 (("UnmapBuffer" unmap-buffer) :args
74 ((:name |target| :type |BufferTargetARB| :direction :in)) :return ("Boolean")
75 :category ("VERSION_1_5") :version ("1.5") :extension nil :glxropcode ("?")
76 :glxflags ("ignore") :glsopcode ("?") :offset ("698")))
77 (defglfun
78 (("MapBuffer" map-buffer) :args
79 ((:name |target| :type |BufferTargetARB| :direction :in)
80 (:name |access| :type |BufferAccessARB| :direction :in))
81 :return ("VoidPointer") :category ("VERSION_1_5") :version ("1.5") :extension
82 nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("697")))
83 (defglfun
84 (("GetBufferSubData" get-buffer-sub-data) :args
85 ((:name |target| :type |BufferTargetARB| :direction :in)
86 (:name |offset| :type |BufferOffset| :direction :in)
87 (:name |size| :type |BufferSize| :direction :in)
88 (:name |data| :type |Void| :direction :out :array t :size size))
89 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
90 ("1.5") :extension nil :glxsingle ("?") :glxflags ("ignore") :glsflags
91 ("get") :glsopcode ("?") :offset ("695")))
92 (defglfun
93 (("BufferSubData" buffer-sub-data) :args
94 ((:name |target| :type |BufferTargetARB| :direction :in)
95 (:name |offset| :type |BufferOffset| :direction :in)
96 (:name |size| :type |BufferSize| :direction :in)
97 (:name |data| :type |ConstVoid| :direction :in :array t :size size))
98 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
99 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("690")))
100 (defglfun
101 (("BufferData" buffer-data) :args
102 ((:name |target| :type |BufferTargetARB| :direction :in)
103 (:name |size| :type |BufferSize| :direction :in)
104 (:name |data| :type |ConstVoid| :direction :in :array t :size size)
105 (:name |usage| :type |BufferUsageARB| :direction :in))
106 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
107 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("689")))
108 (defglfun
109 (("IsBuffer" is-buffer) :args ((:name |buffer| :type |UInt32| :direction :in))
110 :return ("Boolean") :category ("VERSION_1_5") :version ("1.5") :extension nil
111 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("696")))
112 (defglfun
113 (("GenBuffers" gen-buffers) :args
114 ((:name |n| :type |SizeI| :direction :in)
115 (:name |buffers| :type |UInt32| :direction :out :array t :size n))
116 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
117 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("692")))
118 (defglfun
119 (("DeleteBuffers" delete-buffers) :args
120 ((:name |n| :type |SizeI| :direction :in)
121 (:name |buffers| :type |ConstUInt32| :direction :in :array t :size n))
122 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
123 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("691")))
124 (defglfun
125 (("BindBuffer" bind-buffer) :args
126 ((:name |target| :type |BufferTargetARB| :direction :in)
127 (:name |buffer| :type |UInt32| :direction :in))
128 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
129 :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?") :offset ("688")))
130 (defglfun
131 (("GetQueryObjectuiv" get-query-object-uiv) :args
132 ((:name |id| :type |UInt32| :direction :in)
133 (:name |pname| :type |GLenum| :direction :in)
134 (:name |params| :type |UInt32| :direction :out :array t :size pname))
135 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
136 ("1.5") :extension nil :glxsingle ("166") :glxflags ("ignore") :glsflags
137 ("get") :glsopcode ("?") :offset ("707")))
138 (defglfun
139 (("GetQueryObjectiv" get-query-object-iv) :args
140 ((:name |id| :type |UInt32| :direction :in)
141 (:name |pname| :type |GLenum| :direction :in)
142 (:name |params| :type |Int32| :direction :out :array t :size pname))
143 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
144 ("1.5") :extension nil :glxsingle ("165") :glxflags ("ignore") :glsflags
145 ("get") :glsopcode ("?") :offset ("706")))
146 (defglfun
147 (("GetQueryiv" get-queryiv) :args
148 ((:name |target| :type |GLenum| :direction :in)
149 (:name |pname| :type |GLenum| :direction :in)
150 (:name |params| :type |Int32| :direction :out :array t :size pname))
151 :return ("void") :category ("VERSION_1_5") :dlflags ("notlistable") :version
152 ("1.5") :extension nil :glxsingle ("164") :glxflags ("ignore") :glsflags
153 ("get") :glsopcode ("?") :offset ("705")))
154 (defglfun
155 (("EndQuery" end-query) :args ((:name |target| :type |GLenum| :direction :in))
156 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
157 :glxropcode ("232") :glxflags ("ignore") :glsopcode ("?") :offset ("704")))
158 (defglfun
159 (("BeginQuery" begin-query) :args
160 ((:name |target| :type |GLenum| :direction :in)
161 (:name |id| :type |UInt32| :direction :in))
162 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
163 :glxropcode ("231") :glxflags ("ignore") :glsopcode ("?") :offset ("703")))
164 (defglfun
165 (("IsQuery" is-query) :args ((:name |id| :type |UInt32| :direction :in))
166 :return ("Boolean") :category ("VERSION_1_5") :version ("1.5") :extension nil
167 :glxsingle ("163") :glxflags ("ignore") :glsopcode ("?") :offset ("702")))
168 (defglfun
169 (("DeleteQueries" delete-queries) :args
170 ((:name |n| :type |SizeI| :direction :in)
171 (:name |ids| :type |UInt32| :direction :in :array t :size n))
172 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
173 :glxsingle ("161") :glxflags ("ignore") :glsopcode ("?") :offset ("701")))
174 (defglfun
175 (("GenQueries" gen-queries) :args
176 ((:name |n| :type |SizeI| :direction :in)
177 (:name |ids| :type |UInt32| :direction :out :array t :size n))
178 :return ("void") :category ("VERSION_1_5") :version ("1.5") :extension nil
179 :glxsingle ("162") :glxflags ("ignore") :glsopcode ("?") :offset ("700")))