xref: /aosp_15_r20/external/angle/src/libANGLE/renderer/metal/shaders/metal_wrapper.py (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1#!/usr/bin/python3
2# Copyright 2023 The ANGLE Project Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5import os
6import subprocess
7import sys
8
9
10def main(args):
11    return subprocess.run(args, stdout=subprocess.PIPE, text=True).returncode
12
13
14if __name__ == '__main__':
15    sys.exit(main(sys.argv[1:]))
16