atynagano

Results 8 comments of atynagano

I am not confident about the quality, but should I make it Ready for review?

@Rua Thanks for your review. > I notice that when you build an acceleration structure, you immediately submit a command buffer and then wait for it to finish. That doesn't...

I got it, but I don't know how to realize it in vulkano.

I'm personally implementing an example then encountered #2312.

I wrote a very simple example program for ray query and acceleration structure like below. So, can I make a PR and have it reviewed? ```glsl void main() { float...

```rust use core::arch::asm; use spirv_std::glam::Vec3; #[spirv_std::macros::gpu_only] pub fn get_positions() -> [Vec3; 3] { unsafe { let mut result: [Vec3; 3] = Default::default(); asm! { "%f32 = OpTypeFloat 32", "%f32x3 =...

Seems supported in version 0.12.

So does the left side `size_of` needs to be divided by 4? Or does `size_of` returns dword size?