SoDataCompressorCompressLong Method (SbNativeArrayByte, UInt64, SoDataCompressorTileInfo) |
Note: This API is now obsolete.
Compresses the given buffer into the internal buffer.
Namespace: OIV.LDM.CompressorsAssembly: OIV.LDM (in OIV.LDM.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax[ObsoleteAttribute("Use Compress() instead.")]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public ulong CompressLong(
SbNativeArray<byte> src,
ulong srcLen,
SoDataCompressorTileInfo tileInfo
)
<ObsoleteAttribute("Use Compress() instead.")>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Function CompressLong (
src As SbNativeArray(Of Byte),
srcLen As ULong,
tileInfo As SoDataCompressorTileInfo
) As ULong
public:
[ObsoleteAttribute(L"Use Compress() instead.")]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
unsigned long long CompressLong(
SbNativeArray<unsigned char>^ src,
unsigned long long srcLen,
SoDataCompressorTileInfo tileInfo
)
[<ObsoleteAttribute("Use Compress() instead.")>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
member CompressLong :
src : SbNativeArray<byte> *
srcLen : uint64 *
tileInfo : SoDataCompressorTileInfo -> uint64
Parameters
- src
- Type: OIV.Inventor.GenericSbNativeArrayByte
a pointer to the data to compress.
- srcLen
- Type: SystemUInt64
the size of the source buffer in bytes.
- tileInfo
- Type: OIV.LDM.CompressorsSoDataCompressorTileInfo
contains information about the tile being processed.
Return Value
Type:
UInt64The size in bytes of the compressed buffer.
Remarks
See Also