コード例 #1
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public abstract VRCompositorError Submit(Hmd_Eye eEye,GraphicsAPIConvention eTextureType,IntPtr pTexture,ref VRTextureBounds_t pBounds,VRSubmitFlags_t nSubmitFlags);
コード例 #2
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public override VRCompositorError Submit(Hmd_Eye eEye,GraphicsAPIConvention eTextureType,IntPtr pTexture,ref VRTextureBounds_t pBounds,VRSubmitFlags_t nSubmitFlags)
 {
     CheckIfUsable();
     VRCompositorError result = VRNativeEntrypoints.VR_IVRCompositor_Submit(m_pVRCompositor,eEye,eTextureType,pTexture,ref pBounds,nSubmitFlags);
     return result;
 }
コード例 #3
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 internal static extern VRCompositorError VR_IVRCompositor_Submit(IntPtr instancePtr, Hmd_Eye eEye, GraphicsAPIConvention eTextureType, IntPtr pTexture, ref VRTextureBounds_t pBounds, VRSubmitFlags_t nSubmitFlags);
コード例 #4
0
ファイル: openvr_api.cs プロジェクト: asmccormick/vive-catch
 public static extern void SetSubmitParams(VRTextureBounds_t boundsL, VRTextureBounds_t boundsR, VRSubmitFlags_t nSubmitFlags);