Script depends on current working directory to
be this same as where the script lives so make
sure that's the case.
Return 0 so NDK tools know things were successful.
# See the License for the specific language governing permissions and
# limitations under the License.
+dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
+cd $dir
+
rm -rf generated
mkdir -p generated
python ../vk-generate.py Android dispatch-table-ops layer > generated/vk_dispatch_table_helper.h
( cd generated; python ../../genvk.py threading -registry ../../vk.xml thread_check.h )
( cd generated; python ../../genvk.py paramchecker -registry ../../vk.xml parameter_validation.h )
+exit 0