MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / GetSkeletalBoneDataCompressed

Method GetSkeletalBoneDataCompressed

headers/openvr_api.cs:4454–4459  ·  view source on GitHub ↗
(ulong action,EVRSkeletalMotionRange eMotionRange,IntPtr pvCompressedData,uint unCompressedSize,ref uint punRequiredCompressedSize)

Source from the content-addressed store, hash-verified

4452 return result;
4453 }
4454 public EVRInputError GetSkeletalBoneDataCompressed(ulong action,EVRSkeletalMotionRange eMotionRange,IntPtr pvCompressedData,uint unCompressedSize,ref uint punRequiredCompressedSize)
4455 {
4456 punRequiredCompressedSize = 0;
4457 EVRInputError result = FnTable.GetSkeletalBoneDataCompressed(action,eMotionRange,pvCompressedData,unCompressedSize,ref punRequiredCompressedSize);
4458 return result;
4459 }
4460 public EVRInputError DecompressSkeletalBoneData(IntPtr pvCompressedBuffer,uint unCompressedBufferSize,EVRSkeletalTransformSpace eTransformSpace,VRBoneTransform_t [] pTransformArray)
4461 {
4462 EVRInputError result = FnTable.DecompressSkeletalBoneData(pvCompressedBuffer,unCompressedBufferSize,eTransformSpace,pTransformArray,(uint) pTransformArray.Length);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected