Skip to content

Commit

Permalink
Ray Tracing Pipeline (KHR) (#2564)
Browse files Browse the repository at this point in the history
* ray tracing pipeline

* fix invalid pointers

* sync

* triangle-raytracing

* working example

* refactor

* refactor SBT

* example for AutoCommandBufferBuilder

* bind & trace_rays validation

* trace_rays validation

* doc for triangle-raytracing-auto

* move mod.rs

* fmt & clippy

* fix clippy ci

* add unit tests for sbt builder

* fmt

* undo sbt copy refactor

* fix clippy

* rename example & cleanup

* rmiss -> miss

* refactor & add doc

* fmt

* update dep & remove abbreviates

* refactor:
- add doc
- add check for stages/groups
- pub modification
- `pub use` StridedDeviceAddressRegionKHR in lib.rs

* implement StridedDeviceAddressRegion

* rename examples
  • Loading branch information
ComfyFluffy authored Dec 14, 2024
1 parent 1dcc38b commit 130f9e5
Show file tree
Hide file tree
Showing 27 changed files with 3,477 additions and 66 deletions.
23 changes: 23 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions examples/ray-tracing-auto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "ray-tracing-auto"
version = "0.0.0"
edition = "2021"
publish = false

[[bin]]
name = "ray-tracing-auto"
path = "main.rs"
test = false
bench = false
doc = false

[dependencies]
vulkano = { workspace = true, default-features = true }
vulkano-shaders = { workspace = true }
winit = { workspace = true, default-features = true }
ash = { workspace = true }
glam = { workspace = true }
Loading

0 comments on commit 130f9e5

Please sign in to comment.