Ian Muldoon

Results 34 comments of Ian Muldoon

~~#198 **Known Issue:** ARCore 1.0 is not supported when running on Android 8 "Oreo" on many devices~~ (FIXED)

@alchemz The 5T is mentioned a few lines up where I deduped your #185 onto this bug.

@Thaina While we're working with many device makers including HMD/Nokia to enable upcoming devices, as far as I know we have not committed to supporting any particular unreleased models except...

@jituijiaqiezi: @Thaina is correct. The S9 is the only upcoming device we have confirmed support for.

@jituijiaqiezi @Sillikk Per #250: > Support for the S9 and S9+ will be added in the next release, which should be released in the coming weeks.

While `VK_KHR_external_memory` solves half the problem, at the moment Android has no equivalent to [`SurfaceTexture`](https://developer.android.com/reference/android/graphics/SurfaceTexture.html) that works with Vulkan.

Thanks for pointing this out. I've recorded this as a feature/enhancement request as it doesn't really seem like a defect.

ARCore 1.4 adds support for two new aspects of camera control: * **Auto Focus** may be enabled in using [`Config.setFocusMode`](https://developers.google.com/ar/reference/java/com/google/ar/core/Config.html#setFocusMode\(com.google.ar.core.Config.FocusMode\)) * **Higher-Res CPU Images** may be requested using [`Session.setCameraConfig`](https://developers.google.com/ar/reference/java/com/google/ar/core/Session.html#setCameraConfig\(com.google.ar.core.CameraConfig\)) (available...

Haven't tested this but if you replace: session.resume(); with Config config = new Config(session); config.setFocusMode(Config.FocusMode.AUTO); session.configure(config); session.resume(); You should get auto-focus. Note: this config can be set after `Session.resume()`, it's...