1@echo off
2REM # Copyright 2015 The Android Open Source Project
3REM # Copyright (C) 2015 Valve Corporation
4REM
5REM # Licensed under the Apache License, Version 2.0 (the "License");
6REM # you may not use this file except in compliance with the License.
7REM # You may obtain a copy of the License at
8REM
9REM #      http://www.apache.org/licenses/LICENSE-2.0
10REM
11REM # Unless required by applicable law or agreed to in writing, software
12REM # distributed under the License is distributed on an "AS IS" BASIS,
13REM # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14REM # See the License for the specific language governing permissions and
15REM # limitations under the License.
16
17if exist generated (
18  rmdir /s /q generated
19)
20mkdir generated\include generated\common
21
22python ../vk-generate.py Android dispatch-table-ops layer > generated/include/vk_dispatch_table_helper.h
23
24python ../vk_helper.py --gen_enum_string_helper ../include/vulkan/vulkan.h --abs_out_dir generated/include
25python ../vk_helper.py --gen_struct_wrappers ../include/vulkan/vulkan.h --abs_out_dir generated/include
26
27cd generated/include
28python ../../../lvl_genvk.py -registry ../../../vk.xml thread_check.h
29python ../../../lvl_genvk.py -registry ../../../vk.xml parameter_validation.h
30python ../../../lvl_genvk.py -registry ../../../vk.xml unique_objects_wrappers.h
31