Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ray Tracing Pipeline (KHR) #2564

Merged
merged 30 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ecb5b5c
ray tracing pipeline
ComfyFluffy Aug 1, 2024
e74ea4d
fix invalid pointers
ComfyFluffy Sep 25, 2024
127dd49
Merge remote-tracking branch 'origin/master' into rt-khr
ComfyFluffy Nov 9, 2024
e3f9ddd
Merge remote-tracking branch 'origin/master' into rt-khr
ComfyFluffy Nov 9, 2024
37db4d2
Merge remote-tracking branch 'origin/master' into rt-khr
ComfyFluffy Nov 19, 2024
d5d46a6
sync
ComfyFluffy Nov 19, 2024
193ae3d
triangle-raytracing
ComfyFluffy Nov 23, 2024
db68cff
working example
ComfyFluffy Nov 24, 2024
e1d7da7
refactor
ComfyFluffy Nov 24, 2024
73a582e
refactor SBT
ComfyFluffy Nov 25, 2024
e82e140
example for AutoCommandBufferBuilder
ComfyFluffy Nov 25, 2024
616cca9
bind & trace_rays validation
ComfyFluffy Nov 25, 2024
fe75b1c
trace_rays validation
ComfyFluffy Nov 25, 2024
b105ca5
doc for triangle-raytracing-auto
ComfyFluffy Nov 27, 2024
8392a7f
move mod.rs
ComfyFluffy Nov 27, 2024
6c63269
fmt & clippy
ComfyFluffy Nov 27, 2024
b7e593e
fix clippy ci
ComfyFluffy Nov 27, 2024
4b908ab
add unit tests for sbt builder
ComfyFluffy Nov 29, 2024
a6a8739
fmt
ComfyFluffy Nov 29, 2024
6d68913
undo sbt copy refactor
ComfyFluffy Dec 2, 2024
81f2fb0
fix clippy
ComfyFluffy Dec 2, 2024
ced0dc2
rename example & cleanup
ComfyFluffy Dec 13, 2024
17dd7cc
rmiss -> miss
ComfyFluffy Dec 13, 2024
c517d7d
refactor & add doc
ComfyFluffy Dec 13, 2024
9d73824
fmt
ComfyFluffy Dec 13, 2024
e1844de
Merge remote-tracking branch 'origin/master' into rt-khr
ComfyFluffy Dec 13, 2024
2d8804b
update dep & remove abbreviates
ComfyFluffy Dec 13, 2024
9f6b795
refactor:
ComfyFluffy Dec 13, 2024
560eccb
implement StridedDeviceAddressRegion
ComfyFluffy Dec 14, 2024
1fb506e
rename examples
ComfyFluffy Dec 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading