commit | 0984214d8bef3b1a62590a3118b90e0a4c7eb7bf | [log] [tgz] |
---|---|---|
author | dan sinclair <dsinclair@chromium.org> | Wed Mar 25 18:54:01 2020 +0000 |
committer | dan sinclair <dsinclair@google.com> | Wed Mar 25 18:54:01 2020 +0000 |
tree | 54c59ab6095d38e55c075f7d68712a6de6dbd20c | |
parent | 235ceebe374d781375ebb66b50dfc2a496245a1d [diff] |
[wgsl-writer] Add statement writer helper. This CL adds a helper to emit a block of statements from the WGSL writer. Change-Id: I6fe62d894882c0a0fdc8865967bfa4887f3a65a3 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17761 Reviewed-by: David Neto <dneto@google.com>
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.