Skip to content

Instantly share code, notes, and snippets.

@MortimerGoro
Created November 23, 2016 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MortimerGoro/8613a1b7760db7886487edc7441d9720 to your computer and use it in GitHub Desktop.
Save MortimerGoro/8613a1b7760db7886487edc7441d9720 to your computer and use it in GitHub Desktop.
VRCompositorCommand for blogpost
pub enum VRCompositorCommand {
Create(VRCompositorId),
SyncPoses(VRCompositorId, f64, f64, IpcSender<Result<Vec<u8>,()>>),
SubmitFrame(VRCompositorId, [f32; 4], [f32; 4]),
Release(VRCompositorId)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment