1
0
Fork 0
forked from wry/wry

vulkan: store out vertices in buffer

This commit is contained in:
Julian Orth 2025-02-27 16:14:22 +01:00
parent 10be846e4c
commit 73611fd287
4 changed files with 34 additions and 31 deletions

View file

@ -56,7 +56,7 @@ unsafe impl Packed for TexPushConstants {}
#[derive(Copy, Clone, Debug)]
#[repr(C)]
pub struct OutPushConstants {
pub pos: [[f32; 2]; 4],
pub vertices: DeviceAddress,
}
unsafe impl Packed for OutPushConstants {}