started implementing openxr stuff

This commit is contained in:
awtterpip
2023-08-13 18:56:30 -05:00
parent 44e9c69315
commit 207bdfb0ec
2 changed files with 0 additions and 12 deletions

View File

@@ -8,7 +8,6 @@ use bevy::window::{PrimaryWindow, RawHandleWrapper};
use state::XrState; use state::XrState;
mod state; mod state;
mod swapchain;
pub struct OpenXrPlugin { pub struct OpenXrPlugin {
pub wgpu_settings: WgpuSettings, pub wgpu_settings: WgpuSettings,

View File

@@ -1,11 +0,0 @@
use std::sync::Mutex;
use bevy::prelude::*;
use openxr as xr;
struct Extent2D {
width: u32,
height: u32,
}