From 70d430c0fb3dd7832265815cde48866fada1eb3b Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Fri, 28 Sep 2018 16:12:38 -0400 Subject: Initial commit of Amber for open source Amber is a multi-API shader test framework. Amber lets you capture and communicate shader bugs with the fluidity and ease of a scripting flow: * No graphics API programming is required. * WIP: Supports Vulkan and [Dawn][Dawn] graphics APIs. * A single text string (or file) maps to a single graphics API pipeline test case. The text includes: * Input data, including buffers and images. * Shaders. * Expectations for the result of running the pipeline. * Shaders can be expressed in binary form (as hex), in SPIR-V assembly, or in a higher level shader language. * After executing the pipeline, result buffers and images can be saved to output files. This is not an officially supported Google product. --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96b3bed --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +out +third_party/glslang +third_party/googletest +third_party/shaderc +third_party/spirv-tools +third_party/spirv-headers -- cgit v1.2.3