From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- gfx/wr/examples/Cargo.toml | 67 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 gfx/wr/examples/Cargo.toml (limited to 'gfx/wr/examples/Cargo.toml') diff --git a/gfx/wr/examples/Cargo.toml b/gfx/wr/examples/Cargo.toml new file mode 100644 index 0000000000..9065707538 --- /dev/null +++ b/gfx/wr/examples/Cargo.toml @@ -0,0 +1,67 @@ +[package] +name = "webrender-examples" +version = "0.1.0" +authors = ["Glenn Watson "] +license = "MPL-2.0" +repository = "https://github.com/servo/webrender" +edition = "2018" + +[[bin]] +name = "alpha_perf" +path = "alpha_perf.rs" + +[[bin]] +name = "animation" +path = "animation.rs" + +[[bin]] +name = "basic" +path = "basic.rs" + +[[bin]] +name = "blob" +path = "blob.rs" + +[[bin]] +name = "document" +path = "document.rs" + +[[bin]] +name = "iframe" +path = "iframe.rs" + +[[bin]] +name = "image_resize" +path = "image_resize.rs" + +[[bin]] +name = "multiwindow" +path = "multiwindow.rs" + +[[bin]] +name = "scrolling" +path = "scrolling.rs" + +[[bin]] +name = "texture_cache_stress" +path = "texture_cache_stress.rs" + +[[bin]] +name = "yuv" +path = "yuv.rs" + +[features] +debug = ["webrender/capture", "webrender/profiler"] + +[dependencies] +app_units = "0.7" +env_logger = { version = "0.10", default_features = false } +euclid = "0.22" +gleam = "0.15" +glutin = "0.28" +rayon = "1" +webrender = { path = "../webrender" } +winit = "0.26" + +[target.'cfg(target_os = "macos")'.dependencies] +core-foundation = "0.7" -- cgit v1.2.3