mesa/cs: Add dispatch API stubs for ARB_compute_shader.
[mesa.git] / src / mapi / glapi / gen / gl_genexec.py
1 #!/usr/bin/env python
2
3 # Copyright (C) 2012 Intel Corporation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice (including the next
13 # paragraph) shall be included in all copies or substantial portions of the
14 # Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23
24 # This script generates the file api_exec.c, which contains
25 # _mesa_initialize_exec_table(). It is responsible for populating all
26 # entries in the "exec" dispatch table that aren't dynamic.
27
28 import collections
29 import license
30 import gl_XML
31 import sys, getopt
32
33
34 exec_flavor_map = {
35 'dynamic': None,
36 'mesa': '_mesa_',
37 'skip': None,
38 }
39
40
41 header = """/**
42 * \\file api_exec.c
43 * Initialize dispatch table.
44 */
45
46
47 #include "main/accum.h"
48 #include "main/api_loopback.h"
49 #include "main/api_exec.h"
50 #include "main/arbprogram.h"
51 #include "main/atifragshader.h"
52 #include "main/attrib.h"
53 #include "main/blend.h"
54 #include "main/blit.h"
55 #include "main/bufferobj.h"
56 #include "main/arrayobj.h"
57 #include "main/buffers.h"
58 #include "main/clear.h"
59 #include "main/clip.h"
60 #include "main/colortab.h"
61 #include "main/compute.h"
62 #include "main/condrender.h"
63 #include "main/context.h"
64 #include "main/convolve.h"
65 #include "main/depth.h"
66 #include "main/dlist.h"
67 #include "main/drawpix.h"
68 #include "main/drawtex.h"
69 #include "main/rastpos.h"
70 #include "main/enable.h"
71 #include "main/errors.h"
72 #include "main/es1_conversion.h"
73 #include "main/eval.h"
74 #include "main/get.h"
75 #include "main/feedback.h"
76 #include "main/fog.h"
77 #include "main/fbobject.h"
78 #include "main/framebuffer.h"
79 #include "main/genmipmap.h"
80 #include "main/hint.h"
81 #include "main/histogram.h"
82 #include "main/imports.h"
83 #include "main/light.h"
84 #include "main/lines.h"
85 #include "main/matrix.h"
86 #include "main/multisample.h"
87 #include "main/objectlabel.h"
88 #include "main/performance_monitor.h"
89 #include "main/pixel.h"
90 #include "main/pixelstore.h"
91 #include "main/points.h"
92 #include "main/polygon.h"
93 #include "main/querymatrix.h"
94 #include "main/queryobj.h"
95 #include "main/readpix.h"
96 #include "main/samplerobj.h"
97 #include "main/scissor.h"
98 #include "main/stencil.h"
99 #include "main/texenv.h"
100 #include "main/texgetimage.h"
101 #include "main/teximage.h"
102 #include "main/texgen.h"
103 #include "main/texobj.h"
104 #include "main/texparam.h"
105 #include "main/texstate.h"
106 #include "main/texstorage.h"
107 #include "main/texturebarrier.h"
108 #include "main/textureview.h"
109 #include "main/transformfeedback.h"
110 #include "main/mtypes.h"
111 #include "main/varray.h"
112 #include "main/viewport.h"
113 #include "main/shaderapi.h"
114 #include "main/shaderimage.h"
115 #include "main/uniforms.h"
116 #include "main/syncobj.h"
117 #include "main/formatquery.h"
118 #include "main/dispatch.h"
119 #include "main/vdpau.h"
120 #include "vbo/vbo.h"
121
122
123 /**
124 * Initialize a context's exec table with pointers to Mesa's supported
125 * GL functions.
126 *
127 * This function depends on ctx->Version.
128 *
129 * \param ctx GL context to which \c exec belongs.
130 */
131 void
132 _mesa_initialize_exec_table(struct gl_context *ctx)
133 {
134 struct _glapi_table *exec;
135
136 exec = ctx->Exec;
137 assert(exec != NULL);
138
139 assert(ctx->Version > 0);
140
141 vbo_initialize_exec_dispatch(ctx, exec);
142 """
143
144
145 footer = """
146 }
147 """
148
149
150 class PrintCode(gl_XML.gl_print_base):
151
152 def __init__(self):
153 gl_XML.gl_print_base.__init__(self)
154
155 self.name = 'gl_genexec.py'
156 self.license = license.bsd_license_template % (
157 'Copyright (C) 2012 Intel Corporation',
158 'Intel Corporation')
159
160 def printRealHeader(self):
161 print header
162
163 def printRealFooter(self):
164 print footer
165
166 def printBody(self, api):
167 # Collect SET_* calls by the condition under which they should
168 # be called.
169 settings_by_condition = collections.defaultdict(lambda: [])
170 for f in api.functionIterateAll():
171 if f.exec_flavor not in exec_flavor_map:
172 raise Exception(
173 'Unrecognized exec flavor {0!r}'.format(f.exec_flavor))
174 condition_parts = []
175 if f.desktop:
176 if f.deprecated:
177 condition_parts.append('ctx->API == API_OPENGL_COMPAT')
178 else:
179 condition_parts.append('_mesa_is_desktop_gl(ctx)')
180 if 'es1' in f.api_map:
181 condition_parts.append('ctx->API == API_OPENGLES')
182 if 'es2' in f.api_map:
183 if f.api_map['es2'] == 3:
184 condition_parts.append('_mesa_is_gles3(ctx)')
185 else:
186 condition_parts.append('ctx->API == API_OPENGLES2')
187 if not condition_parts:
188 # This function does not exist in any API.
189 continue
190 condition = ' || '.join(condition_parts)
191 prefix = exec_flavor_map[f.exec_flavor]
192 if prefix is None:
193 # This function is not implemented, or is dispatched
194 # dynamically.
195 continue
196 settings_by_condition[condition].append(
197 'SET_{0}(exec, {1}{0});'.format(f.name, prefix, f.name))
198 # Print out an if statement for each unique condition, with
199 # the SET_* calls nested inside it.
200 for condition in sorted(settings_by_condition.keys()):
201 print ' if ({0}) {{'.format(condition)
202 for setting in sorted(settings_by_condition[condition]):
203 print ' {0}'.format(setting)
204 print ' }'
205
206
207 def show_usage():
208 print "Usage: %s [-f input_file_name]" % sys.argv[0]
209 sys.exit(1)
210
211
212 if __name__ == '__main__':
213 file_name = "gl_and_es_API.xml"
214
215 try:
216 (args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
217 except Exception,e:
218 show_usage()
219
220 for (arg,val) in args:
221 if arg == "-f":
222 file_name = val
223
224 printer = PrintCode()
225
226 api = gl_XML.parse_GL_API(file_name)
227 printer.Print(api)