nothing works
This commit is contained in:
15
src/backend/openvr/overlay.rs
Normal file
15
src/backend/openvr/overlay.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use ovr_overlay::sys::VRVulkanTextureData_t;
|
||||
|
||||
use crate::overlays::OverlayData;
|
||||
|
||||
pub(super) struct OpenVrOverlayManager {
|
||||
pub(super) overlays: Vec<OpenVrOverlay>,
|
||||
}
|
||||
|
||||
pub(super) struct OpenVrOverlay {
|
||||
pub(super) visible: bool,
|
||||
pub(super) color: [f32; 4],
|
||||
overlay: OverlayData,
|
||||
handle: u32,
|
||||
ovr_texture: VRVulkanTextureData_t,
|
||||
}
|
||||
Reference in New Issue
Block a user