With deprecated Oculus API, it was possible to submit multisample
textures. Now, with OpenXR, xrEnumerateViewConfigurationViews() tells
that maxSwapchainSampleCount is 1. It means it's impossible to create
multisample swapchain images (XrSwapchainCre...
I can use android's ACTION_VIEW intent to open certain URL in browser,
is there correct way to do the same but for Store page, not for browser?
I found workarounds
(https://forums.oculusvr.com/t5/Oculus-Quest-Development/Linking-To-An-App-s-Store-Pag...
You are right, multisample swapchain is in fact supported (I messed up
with glFramebufferTexture2DMultisampleEXT). However,
maxSwapchainSampleCount=1 means we must not set
XrSwapchainCreateInfo.sampleCount to values higher than 1. But we can do
it an...
Using native OpenXR? After xrEnumerateViewConfigurationViews() call,
what have you got in ((XrViewConfigurationView)
view).maxSwapchainSampleCount? (I got 4 on PC and 1 on native Quest 2)