-
Hello there ! I'm trying to use FB passthrough using OpenXR/OpenGL bindings. However, i'm trying to use passthrough functionnality. Meta don't seem to support blend mode AlphaBlend (like Varjo XR does at least), but from what i understand, it have a dedicated API that is declared in Silk.NET.openXR.Extensions.FB. Using Meta's C++ example, I have a base code as reference, but it seems some xr fonctions are missing in my openxr_loader DLLs I start with
then
this command results in a dll problem as native function are not present in the dll. I don't know where to go from here. Can anybody provide some insight ? Thank you ! M. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You should use xr.TryGetExtension(out FBPassthrough passthrough) instead |
Beta Was this translation helpful? Give feedback.
OK ! got it. if it may it help somebody someday :
The proper extension access is actually :
Xr.TryGetInstanceExtension<FBPassthrough>(null, xrInstance, out var FB_PT);
M.