Skip to content

Commit

Permalink
Merge pull request #480 from Sharktheone/rendering/backend_trait
Browse files Browse the repository at this point in the history
Rendering/backend trait
  • Loading branch information
Sharktheone authored Jun 10, 2024
2 parents 795010a + d2292c1 commit e9c0010
Show file tree
Hide file tree
Showing 43 changed files with 4,157 additions and 987 deletions.
415 changes: 362 additions & 53 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ gosub_jsapi = { path = "./crates/gosub_jsapi", features = [] }
gosub_testing = { path = "./crates/gosub_testing", features = [] }
gosub_rendering = { path = "crates/gosub_render_utils", features = [] }
gosub_renderer = { path = "./crates/gosub_renderer", features = [] }
gosub_render_backend = { path = "./crates/gosub_render_backend", features = [] }
gosub_vello = { path = "./crates/gosub_vello", features = [] }
gosub_useragent = { path = "./crates/gosub_useragent", features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
derive_more = "0.99"
Expand Down
11 changes: 11 additions & 0 deletions crates/gosub_render_backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "gosub_render_backend"
version = "0.1.0"
edition = "2021"

[dependencies]
smallvec = "1.13.2"
image = "0.25.1"
raw-window-handle = "0.6.2"
gosub_shared = { path = "../gosub_shared" }

Loading

0 comments on commit e9c0010

Please sign in to comment.