Skip to content

Commit

Permalink
Fixed magicleap Servo2D application
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Jeffrey committed Jun 14, 2019
1 parent 5f4074a commit b5bd3ad
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions ports/libmlservo/src/lib.rs
Expand Up @@ -140,17 +140,22 @@ pub unsafe extern "C" fn init_servo(
};
info!("got args: {:?}", args);

let name = String::from("Magic Leap VR Display");
let (service, heartbeat) =
MagicLeapVRService::new(name, ctxt, gl.clone()).expect("Failed to create VR service");
let service = Box::new(service);
let heartbeat = Box::new(heartbeat);
let vr_init = if landscape {
VRInitOptions::None
} else {
let name = String::from("Magic Leap VR Display");
let (service, heartbeat) =
MagicLeapVRService::new(name, ctxt, gl.clone()).expect("Failed to create VR service");
let service = Box::new(service);
let heartbeat = Box::new(heartbeat);
VRInitOptions::VRService(service, heartbeat)
};
let opts = InitOptions {
args,
url: Some(url.to_string()),
density: hidpi,
enable_subpixel_text_antialiasing: false,
vr_init: VRInitOptions::VRService(service, heartbeat),
vr_init,
coordinates,
};
let wakeup = Box::new(EventLoopWakerInstance);
Expand Down

0 comments on commit b5bd3ad

Please sign in to comment.