mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 20:31:29 +11:00
47f8812e2f
There's a bit of reorganizing as well. Shader stages are made available from piet-gpu to the test rig, config is now a proper structure (marshaled with bytemuck). This commit just has the transform stage, which is a simple monoid scan of affine transforms. Progress toward #119
24 lines
450 B
TOML
24 lines
450 B
TOML
[package]
|
|
name = "piet-gpu-tests"
|
|
version = "0.1.0"
|
|
authors = ["Raph Levien <raph.levien@gmail.com>"]
|
|
description = "Tests for piet-gpu shaders and generic GPU capabilities."
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["piet-gpu"]
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
bytemuck = "1.7.2"
|
|
kurbo = "0.7.1"
|
|
rand = "0.7.3"
|
|
|
|
[dependencies.piet-gpu-hal]
|
|
path = "../piet-gpu-hal"
|
|
|
|
[dependencies.piet-gpu]
|
|
path = "../piet-gpu"
|
|
optional = true
|