commit | d1cf8a8ba51262ce84c5d0a35e023921689e7e33 | [log] [tgz] |
---|---|---|
author | Ryan Harrison <rharrison@chromium.org> | Wed Apr 15 20:35:38 2020 +0000 |
committer | Ryan Harrison <rharrison@chromium.org> | Wed Apr 15 20:35:38 2020 +0000 |
tree | bd805414f634c8631210e5e6bb3be59165db5fef | |
parent | ac3213b4addd55df34965121cab5f7d9aa1d5f2d [diff] |
Add support for SPIRV reading to BUILD.gn BUG=dawn:16 Change-Id: I1da30fed82a310007674801e3b1e853b25d5b573 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/19640 Reviewed-by: dan sinclair <dsinclair@google.com> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Tint is a compiler for the WebGPU Shader Language (WGSL).
This is not an officially supported Google product.
TINT_BUILD_SPV_READER
: enable the SPIR-V input reader (off by default)TINT_BUILD_WGSL_READER
: enable the WGSL input reader (on by default)TINT_BUILD_SPV_WRITER
: enable the SPIR-V output writer (on by default)TINT_BUILD_WGSL_WRITER
: enable the WGSL output writer (on by default)Tint uses Chromium dependency management so you need to install depot_tools and add it to your PATH.
# Clone the repo as "tint" git clone https://dawn.googlesource.com/tint tint && cd tint # Bootstrap the gclient configuration cp standalone.gclient .gclient # Fetch external dependencies and toolchains with gclient gclient sync
mkdir -p out/Debug cd out/Debug cmake -GNinja ../.. ninja # or autoninja
mkdir -p out/Debug cd out/Debug cmake ../.. make # -j N for N-way parallel build
Please file any issues or feature requests at https://bugs.chromium.org/p/tint/issues/entry
Please see the CONTRIBUTING and CODE_OF_CONDUCT files on how to contribute to Tint.