Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Inflate() [3/4]

unsafe int System.IO.Compression.Inflater.Inflate ( Span< byte > destination)
inline

Definition at line 62 of file Inflater.cs.

63 {
64 if (destination.Length == 0)
65 {
66 return 0;
67 }
68 fixed (byte* bufPtr = &MemoryMarshal.GetReference(destination))
69 {
70 return InflateVerified(bufPtr, destination.Length);
71 }
72 }
unsafe int InflateVerified(byte *bufPtr, int length)
Definition Inflater.cs:74

References System.destination, and System.IO.Compression.Inflater.InflateVerified().