es1_glapi_mapi_tmp_h = custom_target(
'es1_glapi_mapi_tmp.h',
- input : [mapi_abi_py, gl_and_es_api_files],
+ input : [glapi_gen_mapi_py, glapi_gen_gl_xml],
output : 'glapi_mapi_tmp.h',
- command : [prog_python, '@INPUT0@', '--printer', 'es1api', '@INPUT1@'],
- depend_files : api_xml_files,
+ command : [prog_python, '@INPUT0@', 'glesv1', '@INPUT1@'],
+ depend_files : glapi_gen_mapi_deps,
capture : true,
)
es2_glapi_mapi_tmp_h = custom_target(
'es2_glapi_mapi_tmp.h',
- input : [mapi_abi_py, gl_and_es_api_files],
+ input : [glapi_gen_mapi_py, glapi_gen_gl_xml],
output : 'glapi_mapi_tmp.h',
- command : [prog_python, '@INPUT0@', '--printer', 'es2api', '@INPUT1@'],
- depend_files : api_xml_files,
+ command : [prog_python, '@INPUT0@', 'glesv2', '@INPUT1@'],
+ depend_files : glapi_gen_mapi_deps,
capture : true,
)
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
+glapi_gen_gl_xml = files('../registry/gl.xml')
+glapi_gen_mapi_deps = [
+ glapi_gen_gl_xml,
+ genCommon_py,
+ glapi_gen_gl_xml,
+]
+
gl_and_es_api_files = files('gl_and_es_API.xml')
api_xml_files = files(
)
genCommon_py = files('new/genCommon.py')
+glapi_gen_mapi_py = files('new/gen_gldispatch_mapi.py')
mapi_abi_py = files('mapi_abi.py')
subdir('glapi')