From d2b41d628b9279018f0f844853631aeb4ce81b35 Mon Sep 17 00:00:00 2001 From: Arman Uguray Date: Wed, 29 Mar 2023 11:20:56 -0700 Subject: [PATCH] [vello_shaders] Add a README --- vello_shaders/README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vello_shaders/README.md diff --git a/vello_shaders/README.md b/vello_shaders/README.md new file mode 100644 index 0000000..c0cf1af --- /dev/null +++ b/vello_shaders/README.md @@ -0,0 +1,7 @@ +The `vello_shaders` crate provides a utility library to integrate the Vello shader modules into any +renderer project. The create provides the necessary metadata to construct the individual compute +pipelines on any GPU API while leaving the responsibility of all API interactions (such as +resource management and command encoding) up to the client. + +The shaders can be pre-compiled to any target shading language at build time based on feature flags. +Currently only WGSL and Metal Shading Language are supported.