SYMBOL INDEX (3846 symbols across 205 files) FILE: AssetStudio.PInvoke/DllLoader.cs class DllLoader (line 9) | public static class DllLoader method PreloadDll (line 12) | public static void PreloadDll(string dllName) method GetDirectedDllDirectory (line 28) | private static string GetDirectedDllDirectory() class Win32 (line 40) | private static class Win32 method LoadDll (line 43) | internal static void LoadDll(string dllDir, string dllName) method LoadLibraryEx (line 62) | [DllImport("kernel32.dll", SetLastError = true)] class Posix (line 70) | private static class Posix method LoadDll (line 73) | internal static void LoadDll(string dllDir, string dllName) method DlOpen (line 110) | [DllImport("libdl", EntryPoint = "dlopen")] method DlError (line 114) | [DllImport("libdl", EntryPoint = "dlerror")] FILE: AssetStudio.PInvoke/Utf8StringHandle.cs class Utf8StringHandle (line 9) | public class Utf8StringHandle : SafeHandleZeroOrMinusOneIsInvalid method Utf8StringHandle (line 12) | static Utf8StringHandle() method Utf8StringHandle (line 17) | public Utf8StringHandle(string str) method ReadUtf8StringFromPointer (line 53) | public static string ReadUtf8StringFromPointer(IntPtr lpstr) method ReleaseHandle (line 87) | protected override bool ReleaseHandle() FILE: AssetStudio/7zip/Common/CRC.cs class CRC (line 5) | public class CRC method CRC (line 9) | static CRC() method Init (line 27) | public void Init() { _value = 0xFFFFFFFF; } method UpdateByte (line 29) | public void UpdateByte(byte b) method Update (line 34) | public void Update(byte[] data, uint offset, uint size) method GetDigest (line 40) | public uint GetDigest() { return _value ^ 0xFFFFFFFF; } method CalculateDigest (line 42) | static uint CalculateDigest(byte[] data, uint offset, uint size) method VerifyDigest (line 50) | static bool VerifyDigest(uint digest, byte[] data, uint offset, uint s... FILE: AssetStudio/7zip/Common/CommandLineParser.cs type SwitchType (line 8) | public enum SwitchType class SwitchForm (line 17) | public class SwitchForm method SwitchForm (line 26) | public SwitchForm(string idString, SwitchType type, bool multi, method SwitchForm (line 36) | public SwitchForm(string idString, SwitchType type, bool multi, int mi... method SwitchForm (line 40) | public SwitchForm(string idString, SwitchType type, bool multi): class SwitchResult (line 46) | public class SwitchResult method SwitchResult (line 52) | public SwitchResult() class Parser (line 58) | public class Parser method Parser (line 63) | public Parser(int numSwitches) method ParseString (line 70) | bool ParseString(string srcString, SwitchForm[] switchForms) method ParseStrings (line 171) | public void ParseStrings(SwitchForm[] switchForms, string[] commandStr... method ParseCommand (line 191) | public static int ParseCommand(CommandForm[] commandForms, string comm... method ParseSubCharsCommand (line 216) | static bool ParseSubCharsCommand(int numForms, CommandSubCharsSet[] fo... method IsItSwitchChar (line 252) | static bool IsItSwitchChar(char c) class CommandForm (line 258) | public class CommandForm method CommandForm (line 262) | public CommandForm(string idString, bool postStringMode) class CommandSubCharsSet (line 269) | class CommandSubCharsSet FILE: AssetStudio/7zip/Common/InBuffer.cs class InBuffer (line 5) | public class InBuffer method InBuffer (line 15) | public InBuffer(uint bufferSize) method Init (line 21) | public void Init(System.IO.Stream stream) method ReadBlock (line 30) | public bool ReadBlock() method ReleaseStream (line 43) | public void ReleaseStream() method ReadByte (line 49) | public bool ReadByte(byte b) // check it method ReadByte (line 58) | public byte ReadByte() method GetProcessedSize (line 67) | public ulong GetProcessedSize() FILE: AssetStudio/7zip/Common/OutBuffer.cs class OutBuffer (line 5) | public class OutBuffer method OutBuffer (line 13) | public OutBuffer(uint bufferSize) method SetStream (line 19) | public void SetStream(System.IO.Stream stream) { m_Stream = stream; } method FlushStream (line 20) | public void FlushStream() { m_Stream.Flush(); } method CloseStream (line 21) | public void CloseStream() { m_Stream.Close(); } method ReleaseStream (line 22) | public void ReleaseStream() { m_Stream = null; } method Init (line 24) | public void Init() method WriteByte (line 30) | public void WriteByte(byte b) method FlushData (line 37) | public void FlushData() method GetProcessedSize (line 45) | public ulong GetProcessedSize() { return m_ProcessedSize + m_Pos; } FILE: AssetStudio/7zip/Compress/LZ/IMatchFinder.cs type IInWindowStream (line 7) | interface IInWindowStream method SetStream (line 9) | void SetStream(System.IO.Stream inStream); method Init (line 10) | void Init(); method ReleaseStream (line 11) | void ReleaseStream(); method GetIndexByte (line 12) | Byte GetIndexByte(Int32 index); method GetMatchLen (line 13) | UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit); method GetNumAvailableBytes (line 14) | UInt32 GetNumAvailableBytes(); type IMatchFinder (line 17) | interface IMatchFinder : IInWindowStream method Create (line 19) | void Create(UInt32 historySize, UInt32 keepAddBufferBefore, method GetMatches (line 21) | UInt32 GetMatches(UInt32[] distances); method Skip (line 22) | void Skip(UInt32 num); FILE: AssetStudio/7zip/Compress/LZ/LzBinTree.cs class BinTree (line 7) | public class BinTree : InWindow, IMatchFinder method SetType (line 34) | public void SetType(int numHashBytes) method SetStream (line 51) | public new void SetStream(System.IO.Stream stream) { base.SetStream(st... method ReleaseStream (line 52) | public new void ReleaseStream() { base.ReleaseStream(); } method Init (line 54) | public new void Init() method MovePos (line 63) | public new void MovePos() method GetIndexByte (line 72) | public new Byte GetIndexByte(Int32 index) { return base.GetIndexByte(i... method GetMatchLen (line 74) | public new UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit) method GetNumAvailableBytes (line 77) | public new UInt32 GetNumAvailableBytes() { return base.GetNumAvailable... method Create (line 79) | public void Create(UInt32 historySize, UInt32 keepAddBufferBefore, method GetMatches (line 118) | public UInt32 GetMatches(UInt32[] distances) method Skip (line 252) | public void Skip(UInt32 num) method NormalizeLinks (line 344) | void NormalizeLinks(UInt32[] items, UInt32 numItems, UInt32 subValue) method Normalize (line 357) | void Normalize() method SetCutValue (line 365) | public void SetCutValue(UInt32 cutValue) { _cutValue = cutValue; } FILE: AssetStudio/7zip/Compress/LZ/LzInWindow.cs class InWindow (line 7) | public class InWindow method MoveBlock (line 24) | public void MoveBlock() method ReadBlock (line 39) | public virtual void ReadBlock() method Free (line 65) | void Free() { _bufferBase = null; } method Create (line 67) | public void Create(UInt32 keepSizeBefore, UInt32 keepSizeAfter, UInt32... method SetStream (line 81) | public void SetStream(System.IO.Stream stream) { _stream = stream; } method ReleaseStream (line 82) | public void ReleaseStream() { _stream = null; } method Init (line 84) | public void Init() method MovePos (line 93) | public void MovePos() method GetIndexByte (line 105) | public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffs... method GetMatchLen (line 108) | public UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit) method GetNumAvailableBytes (line 122) | public UInt32 GetNumAvailableBytes() { return _streamPos - _pos; } method ReduceOffsets (line 124) | public void ReduceOffsets(Int32 subValue) FILE: AssetStudio/7zip/Compress/LZ/LzOutWindow.cs class OutWindow (line 5) | public class OutWindow method Create (line 15) | public void Create(uint windowSize) method Init (line 27) | public void Init(System.IO.Stream stream, bool solid) method Train (line 39) | public bool Train(System.IO.Stream stream) method ReleaseStream (line 63) | public void ReleaseStream() method Flush (line 69) | public void Flush() method CopyBlock (line 80) | public void CopyBlock(uint distance, uint len) method PutByte (line 95) | public void PutByte(byte b) method GetByte (line 102) | public byte GetByte(uint distance) FILE: AssetStudio/7zip/Compress/LZMA/LzmaBase.cs class Base (line 5) | internal abstract class Base type State (line 15) | public struct State method Init (line 18) | public void Init() { Index = 0; } method UpdateChar (line 19) | public void UpdateChar() method UpdateMatch (line 25) | public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); } method UpdateRep (line 26) | public void UpdateRep() { Index = (uint)(Index < 7 ? 8 : 11); } method UpdateShortRep (line 27) | public void UpdateShortRep() { Index = (uint)(Index < 7 ? 9 : 11); } method IsCharState (line 28) | public bool IsCharState() { return Index < 7; } method GetLenToPosState (line 41) | public static uint GetLenToPosState(uint len) FILE: AssetStudio/7zip/Compress/LZMA/LzmaDecoder.cs class Decoder (line 9) | public class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream class LenDecoder (line 11) | class LenDecoder method Create (line 20) | public void Create(uint numPosStates) method Init (line 30) | public void Init() method Decode (line 42) | public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState) class LiteralDecoder (line 61) | class LiteralDecoder type Decoder2 (line 63) | struct Decoder2 method Create (line 66) | public void Create() { m_Decoders = new BitDecoder[0x300]; } method Init (line 67) | public void Init() { for (int i = 0; i < 0x300; i++) m_Decoders[i]... method DecodeNormal (line 69) | public byte DecodeNormal(RangeCoder.Decoder rangeDecoder) method DecodeWithMatchByte (line 78) | public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, b... method Create (line 104) | public void Create(int numPosBits, int numPrevBits) method Init (line 118) | public void Init() method GetState (line 125) | uint GetState(uint pos, byte prevByte) method DecodeNormal (line 128) | public byte DecodeNormal(RangeCoder.Decoder rangeDecoder, uint pos, ... method DecodeWithMatchByte (line 131) | public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, uin... method Decoder (line 160) | public Decoder() method SetDictionarySize (line 167) | void SetDictionarySize(uint dictionarySize) method SetLiteralProperties (line 178) | void SetLiteralProperties(int lp, int lc) method SetPosBitsProperties (line 187) | void SetPosBitsProperties(int pb) method Init (line 198) | void Init(System.IO.Stream inStream, System.IO.Stream outStream) method Code (line 230) | public void Code(System.IO.Stream inStream, System.IO.Stream outStream, method SetDecoderProperties (line 349) | public void SetDecoderProperties(byte[] properties) method Train (line 367) | public bool Train(System.IO.Stream stream) FILE: AssetStudio/7zip/Compress/LZMA/LzmaEncoder.cs class Encoder (line 9) | public class Encoder : ICoder, ISetCoderProperties, IWriteCoderProperties type EMatchFinderType (line 11) | enum EMatchFinderType method Encoder (line 21) | static Encoder() method GetPosSlot (line 35) | static UInt32 GetPosSlot(UInt32 pos) method GetPosSlot2 (line 44) | static UInt32 GetPosSlot2(UInt32 pos) method BaseInit (line 57) | void BaseInit() class LiteralEncoder (line 68) | class LiteralEncoder type Encoder2 (line 70) | public struct Encoder2 method Create (line 74) | public void Create() { m_Encoders = new BitEncoder[0x300]; } method Init (line 76) | public void Init() { for (int i = 0; i < 0x300; i++) m_Encoders[i]... method Encode (line 78) | public void Encode(RangeCoder.Encoder rangeEncoder, byte symbol) method EncodeMatched (line 89) | public void EncodeMatched(RangeCoder.Encoder rangeEncoder, byte ma... method GetPrice (line 108) | public uint GetPrice(bool matchMode, byte matchByte, byte symbol) method Create (line 143) | public void Create(int numPosBits, int numPrevBits) method Init (line 156) | public void Init() method GetSubCoder (line 163) | public Encoder2 GetSubCoder(UInt32 pos, Byte prevByte) class LenEncoder (line 167) | class LenEncoder method LenEncoder (line 175) | public LenEncoder() method Init (line 184) | public void Init(UInt32 numPosStates) method Encode (line 196) | public void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, U... method SetPrices (line 220) | public void SetPrices(UInt32 posState, UInt32 numSymbols, UInt32[] p... class LenPriceTableEncoder (line 246) | class LenPriceTableEncoder : LenEncoder method SetTableSize (line 252) | public void SetTableSize(UInt32 tableSize) { _tableSize = tableSize; } method GetPrice (line 254) | public UInt32 GetPrice(UInt32 symbol, UInt32 posState) method UpdateTable (line 259) | void UpdateTable(UInt32 posState) method UpdateTables (line 265) | public void UpdateTables(UInt32 numPosStates) method Encode (line 271) | public new void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbo... class Optimal (line 280) | class Optimal method MakeAsChar (line 299) | public void MakeAsChar() { BackPrev = 0xFFFFFFFF; Prev1IsChar = fals... method MakeAsShortRep (line 300) | public void MakeAsShortRep() { BackPrev = 0; ; Prev1IsChar = false; } method IsShortRep (line 301) | public bool IsShortRep() { return (BackPrev == 0); } method Create (line 362) | void Create() method Encoder (line 382) | public Encoder() method SetWriteEndMarkerMode (line 390) | void SetWriteEndMarkerMode(bool writeEndMarker) method Init (line 395) | void Init() method ReadMatchDistances (line 431) | void ReadMatchDistances(out UInt32 lenRes, out UInt32 numDistancePairs) method MovePos (line 446) | void MovePos(UInt32 num) method GetRepLen1Price (line 455) | UInt32 GetRepLen1Price(Base.State state, UInt32 posState) method GetPureRepPrice (line 461) | UInt32 GetPureRepPrice(UInt32 repIndex, Base.State state, UInt32 posSt... method GetRepPrice (line 483) | UInt32 GetRepPrice(UInt32 repIndex, UInt32 len, Base.State state, UInt... method GetPosLenPrice (line 489) | UInt32 GetPosLenPrice(UInt32 pos, UInt32 len, UInt32 posState) method Backward (line 501) | UInt32 Backward(out UInt32 backRes, UInt32 cur) method GetOptimum (line 539) | UInt32 GetOptimum(UInt32 position, out UInt32 backRes) method ChangePair (line 1030) | bool ChangePair(UInt32 smallDist, UInt32 bigDist) method WriteEndMarker (line 1036) | void WriteEndMarker(UInt32 posState) method Flush (line 1055) | void Flush(UInt32 nowPos) method CodeOneBlock (line 1063) | public void CodeOneBlock(out Int64 inSize, out Int64 outSize, out bool... method ReleaseMFStream (line 1231) | void ReleaseMFStream() method SetOutStream (line 1240) | void SetOutStream(System.IO.Stream outStream) { _rangeEncoder.SetStrea... method ReleaseOutStream (line 1241) | void ReleaseOutStream() { _rangeEncoder.ReleaseStream(); } method ReleaseStreams (line 1243) | void ReleaseStreams() method SetStreams (line 1249) | void SetStreams(System.IO.Stream inStream, System.IO.Stream outStream, method Code (line 1273) | public void Code(System.IO.Stream inStream, System.IO.Stream outStream, method WriteCoderProperties (line 1303) | public void WriteCoderProperties(System.IO.Stream outStream) method FillDistancesPrices (line 1314) | void FillDistancesPrices() method FillAlignPrices (line 1346) | void FillAlignPrices() method FindMatchFinder (line 1360) | static int FindMatchFinder(string s) method SetCoderProperties (line 1368) | public void SetCoderProperties(CoderPropID[] propIDs, object[] propert... method SetTrainSize (line 1474) | public void SetTrainSize(uint trainSize) FILE: AssetStudio/7zip/Compress/RangeCoder/RangeCoder.cs class Encoder (line 5) | class Encoder method SetStream (line 18) | public void SetStream(System.IO.Stream stream) method ReleaseStream (line 23) | public void ReleaseStream() method Init (line 28) | public void Init() method FlushData (line 38) | public void FlushData() method FlushStream (line 44) | public void FlushStream() method CloseStream (line 49) | public void CloseStream() method Encode (line 54) | public void Encode(uint start, uint size, uint total) method ShiftLow (line 65) | public void ShiftLow() method EncodeDirectBits (line 82) | public void EncodeDirectBits(uint v, int numTotalBits) method EncodeBit (line 97) | public void EncodeBit(uint size0, int numTotalBits, uint symbol) method GetProcessedSizeAdd (line 114) | public long GetProcessedSizeAdd() class Decoder (line 122) | class Decoder method Init (line 130) | public void Init(System.IO.Stream stream) method ReleaseStream (line 141) | public void ReleaseStream() method CloseStream (line 147) | public void CloseStream() method Normalize (line 152) | public void Normalize() method Normalize2 (line 161) | public void Normalize2() method GetThreshold (line 170) | public uint GetThreshold(uint total) method Decode (line 175) | public void Decode(uint start, uint size, uint total) method DecodeDirectBits (line 182) | public uint DecodeDirectBits(int numTotalBits) method DecodeBit (line 213) | public uint DecodeBit(uint size0, int numTotalBits) FILE: AssetStudio/7zip/Compress/RangeCoder/RangeCoderBit.cs type BitEncoder (line 5) | struct BitEncoder method Init (line 15) | public void Init() { Prob = kBitModelTotal >> 1; } method UpdateModel (line 17) | public void UpdateModel(uint symbol) method Encode (line 25) | public void Encode(Encoder encoder, uint symbol) method BitEncoder (line 50) | static BitEncoder() method GetPrice (line 63) | public uint GetPrice(uint symbol) method GetPrice0 (line 67) | public uint GetPrice0() { return ProbPrices[Prob >> kNumMoveReducingBi... method GetPrice1 (line 68) | public uint GetPrice1() { return ProbPrices[(kBitModelTotal - Prob) >>... type BitDecoder (line 71) | struct BitDecoder method UpdateModel (line 79) | public void UpdateModel(int numMoveBits, uint symbol) method Init (line 87) | public void Init() { Prob = kBitModelTotal >> 1; } method Decode (line 89) | public uint Decode(RangeCoder.Decoder rangeDecoder) FILE: AssetStudio/7zip/Compress/RangeCoder/RangeCoderBitTree.cs type BitTreeEncoder (line 5) | struct BitTreeEncoder method BitTreeEncoder (line 10) | public BitTreeEncoder(int numBitLevels) method Init (line 16) | public void Init() method Encode (line 22) | public void Encode(Encoder rangeEncoder, UInt32 symbol) method ReverseEncode (line 34) | public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol) method GetPrice (line 46) | public UInt32 GetPrice(UInt32 symbol) method ReverseGetPrice (line 60) | public UInt32 ReverseGetPrice(UInt32 symbol) method ReverseGetPrice (line 74) | public static UInt32 ReverseGetPrice(BitEncoder[] Models, UInt32 start... method ReverseEncode (line 89) | public static void ReverseEncode(BitEncoder[] Models, UInt32 startIndex, type BitTreeDecoder (line 103) | struct BitTreeDecoder method BitTreeDecoder (line 108) | public BitTreeDecoder(int numBitLevels) method Init (line 114) | public void Init() method Decode (line 120) | public uint Decode(RangeCoder.Decoder rangeDecoder) method ReverseDecode (line 128) | public uint ReverseDecode(RangeCoder.Decoder rangeDecoder) method ReverseDecode (line 142) | public static uint ReverseDecode(BitDecoder[] Models, UInt32 startIndex, FILE: AssetStudio/7zip/ICoder.cs class DataErrorException (line 10) | class DataErrorException : ApplicationException method DataErrorException (line 12) | public DataErrorException(): base("Data Error") { } class InvalidParamException (line 18) | class InvalidParamException : ApplicationException method InvalidParamException (line 20) | public InvalidParamException(): base("Invalid Parameter") { } type ICodeProgress (line 23) | public interface ICodeProgress method SetProgress (line 34) | void SetProgress(Int64 inSize, Int64 outSize); type ICoder (line 37) | public interface ICoder method Code (line 60) | void Code(System.IO.Stream inStream, System.IO.Stream outStream, type CoderPropID (line 78) | public enum CoderPropID type ISetCoderProperties (line 143) | public interface ISetCoderProperties method SetCoderProperties (line 145) | void SetCoderProperties(CoderPropID[] propIDs, object[] properties); type IWriteCoderProperties (line 148) | public interface IWriteCoderProperties method WriteCoderProperties (line 150) | void WriteCoderProperties(System.IO.Stream outStream); type ISetDecoderProperties (line 153) | public interface ISetDecoderProperties method SetDecoderProperties (line 155) | void SetDecoderProperties(byte[] properties); FILE: AssetStudio/AssetsManager.cs class AssetsManager (line 11) | public class AssetsManager method LoadFiles (line 24) | public void LoadFiles(params string[] files) method LoadFolder (line 32) | public void LoadFolder(string path) method Load (line 40) | private void Load(string[] files) method LoadFile (line 65) | private void LoadFile(string fullName) method LoadFile (line 71) | private void LoadFile(FileReader reader) method LoadAssetsFile (line 96) | private void LoadAssetsFile(FileReader reader) method LoadAssetsFromMemory (line 151) | private void LoadAssetsFromMemory(FileReader reader, string originalPa... method LoadBundleFile (line 177) | private void LoadBundleFile(FileReader reader, string originalPath = n... method LoadWebFile (line 212) | private void LoadWebFile(FileReader reader) method LoadZipFile (line 249) | private void LoadZipFile(FileReader reader) method CheckStrippedVersion (line 349) | public void CheckStrippedVersion(SerializedFile assetsFile) method Clear (line 361) | public void Clear() method ReadAssets (line 379) | private void ReadAssets() method ProcessAssets (line 503) | private void ProcessAssets() FILE: AssetStudio/BigArrayPool.cs class BigArrayPool (line 5) | public static class BigArrayPool FILE: AssetStudio/Brotli/BitReader.cs class BitReader (line 9) | internal sealed class BitReader method ReadMoreInput (line 55) | internal static void ReadMoreInput(Org.Brotli.Dec.BitReader br) method CheckHealth (line 97) | internal static void CheckHealth(Org.Brotli.Dec.BitReader br, bool end... method FillBitWindow (line 115) | internal static void FillBitWindow(Org.Brotli.Dec.BitReader br) method ReadBits (line 125) | internal static int ReadBits(Org.Brotli.Dec.BitReader br, int n) method Init (line 141) | internal static void Init(Org.Brotli.Dec.BitReader br, System.IO.Strea... method Prepare (line 156) | private static void Prepare(Org.Brotli.Dec.BitReader br) method Reload (line 164) | internal static void Reload(Org.Brotli.Dec.BitReader br) method Close (line 173) | internal static void Close(Org.Brotli.Dec.BitReader br) method JumpToByteBoundary (line 183) | internal static void JumpToByteBoundary(Org.Brotli.Dec.BitReader br) method IntAvailable (line 196) | internal static int IntAvailable(Org.Brotli.Dec.BitReader br) method CopyBytes (line 206) | internal static void CopyBytes(Org.Brotli.Dec.BitReader br, byte[] dat... FILE: AssetStudio/Brotli/BrotliInputStream.cs class BrotliInputStream (line 13) | public class BrotliInputStream : System.IO.Stream method BrotliInputStream (line 42) | public BrotliInputStream(System.IO.Stream source) method BrotliInputStream (line 63) | public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize) method BrotliInputStream (line 89) | public BrotliInputStream(System.IO.Stream source, int byteReadBufferSi... method Close (line 118) | public override void Close() method ReadByte (line 125) | public override int ReadByte() method Read (line 141) | public override int Read(byte[] destBuffer, int destOffset, int destLen) method Seek (line 205) | public override long Seek(long offset, System.IO.SeekOrigin origin) { method SetLength (line 208) | public override void SetLength(long value){ method BeginWrite (line 213) | public override System.IAsyncResult BeginWrite(byte[] buffer, int offset, method Write (line 217) | public override void Write(byte[] buffer, int offset, int count) { method Flush (line 221) | public override void Flush() {} FILE: AssetStudio/Brotli/BrotliRuntimeException.cs class BrotliRuntimeException (line 9) | [System.Serializable] method BrotliRuntimeException (line 12) | internal BrotliRuntimeException(string message) method BrotliRuntimeException (line 17) | internal BrotliRuntimeException(string message, System.Exception cause) FILE: AssetStudio/Brotli/Context.cs class Context (line 9) | internal sealed class Context FILE: AssetStudio/Brotli/Decode.cs class Decode (line 9) | internal sealed class Decode method DecodeVarLenUnsignedByte (line 45) | private static int DecodeVarLenUnsignedByte(Org.Brotli.Dec.BitReader br) method DecodeMetaBlockLength (line 62) | private static void DecodeMetaBlockLength(Org.Brotli.Dec.BitReader br,... method ReadSymbol (line 115) | private static int ReadSymbol(int[] table, int offset, Org.Brotli.Dec.... method ReadBlockLength (line 133) | private static int ReadBlockLength(int[] table, int offset, Org.Brotli... method TranslateShortCodes (line 141) | private static int TranslateShortCodes(int code, int[] ringBuffer, int... method MoveToFront (line 152) | private static void MoveToFront(int[] v, int index) method InverseMoveToFrontTransform (line 162) | private static void InverseMoveToFrontTransform(byte[] v, int vLen) method ReadHuffmanCodeLengths (line 180) | private static void ReadHuffmanCodeLengths(int[] codeLengthCodeLengths... method ReadHuffmanCode (line 252) | internal static void ReadHuffmanCode(int alphabetSize, int[] table, in... method DecodeContextMap (line 349) | private static int DecodeContextMap(int contextMapSize, byte[] context... method DecodeBlockTypeAndLength (line 404) | private static void DecodeBlockTypeAndLength(Org.Brotli.Dec.State stat... method DecodeLiteralBlockSwitch (line 432) | private static void DecodeLiteralBlockSwitch(Org.Brotli.Dec.State state) method DecodeCommandBlockSwitch (line 444) | private static void DecodeCommandBlockSwitch(Org.Brotli.Dec.State state) method DecodeDistanceBlockSwitch (line 450) | private static void DecodeDistanceBlockSwitch(Org.Brotli.Dec.State state) method MaybeReallocateRingBuffer (line 456) | private static void MaybeReallocateRingBuffer(Org.Brotli.Dec.State state) method ReadMetablockInfo (line 502) | private static void ReadMetablockInfo(Org.Brotli.Dec.State state) method ReadMetablockHuffmanCodesAndContextMaps (line 546) | private static void ReadMetablockHuffmanCodesAndContextMaps(Org.Brotli... method CopyUncompressedData (line 610) | private static void CopyUncompressedData(Org.Brotli.Dec.State state) method WriteRingBuffer (line 637) | private static bool WriteRingBuffer(Org.Brotli.Dec.State state) method SetCustomDictionary (line 655) | internal static void SetCustomDictionary(Org.Brotli.Dec.State state, b... method Decompress (line 661) | internal static void Decompress(Org.Brotli.Dec.State state) FILE: AssetStudio/Brotli/Dictionary.cs class Dictionary (line 20) | internal sealed class Dictionary class DataHolder0 (line 30) | private class DataHolder0 method GetData (line 32) | internal static string GetData() class DataHolder1 (line 38) | private class DataHolder1 method GetData (line 40) | internal static string GetData() class DataHolder2 (line 46) | private class DataHolder2 method GetData (line 48) | internal static string GetData() class DataHolder (line 54) | private class DataHolder method DataHolder (line 58) | static DataHolder() method GetData (line 82) | internal static byte[] GetData() FILE: AssetStudio/Brotli/Huffman.cs class Huffman (line 9) | internal sealed class Huffman method GetNextKey (line 24) | private static int GetNextKey(int key, int len) method ReplicateValue (line 42) | private static void ReplicateValue(int[] table, int offset, int step, ... method NextTableBitSize (line 55) | private static int NextTableBitSize(int[] count, int len, int rootBits) method BuildHuffmanTable (line 72) | internal static void BuildHuffmanTable(int[] rootTable, int tableOffse... FILE: AssetStudio/Brotli/HuffmanTreeGroup.cs class HuffmanTreeGroup (line 9) | internal sealed class HuffmanTreeGroup method Init (line 28) | internal static void Init(Org.Brotli.Dec.HuffmanTreeGroup group, int a... method Decode (line 38) | internal static void Decode(Org.Brotli.Dec.HuffmanTreeGroup group, Org... FILE: AssetStudio/Brotli/IntReader.cs class IntReader (line 9) | internal sealed class IntReader method Init (line 15) | internal static void Init(Org.Brotli.Dec.IntReader ir, byte[] byteBuff... method Convert (line 27) | internal static void Convert(Org.Brotli.Dec.IntReader ir, int intLen) FILE: AssetStudio/Brotli/Prefix.cs class Prefix (line 15) | internal sealed class Prefix FILE: AssetStudio/Brotli/RunningState.cs class RunningState (line 9) | internal sealed class RunningState FILE: AssetStudio/Brotli/State.cs class State (line 8) | internal sealed class State method DecodeWindowBits (line 116) | private static int DecodeWindowBits(Org.Brotli.Dec.BitReader br) method SetInput (line 138) | internal static void SetInput(Org.Brotli.Dec.State state, System.IO.St... method Close (line 157) | internal static void Close(Org.Brotli.Dec.State state) FILE: AssetStudio/Brotli/Transform.cs class Transform (line 9) | internal sealed class Transform method Transform (line 17) | internal Transform(string prefix, int type, string suffix) method ReadUniBytes (line 24) | internal static byte[] ReadUniBytes(string uniBytes) method TransformDictionaryWord (line 82) | internal static int TransformDictionaryWord(byte[] dst, int dstOffset,... FILE: AssetStudio/Brotli/Utils.cs class Utils (line 9) | internal sealed class Utils method FillWithZeroes (line 26) | internal static void FillWithZeroes(byte[] dest, int offset, int length) method FillWithZeroes (line 48) | internal static void FillWithZeroes(int[] dest, int offset, int length) FILE: AssetStudio/Brotli/WordTransformType.cs class WordTransformType (line 14) | internal sealed class WordTransformType method GetOmitFirst (line 58) | internal static int GetOmitFirst(int type) method GetOmitLast (line 63) | internal static int GetOmitLast(int type) FILE: AssetStudio/BuildTarget.cs type BuildTarget (line 8) | public enum BuildTarget FILE: AssetStudio/BuildType.cs class BuildType (line 8) | public class BuildType method BuildType (line 12) | public BuildType(string type) FILE: AssetStudio/BundleFile.cs type ArchiveFlags (line 8) | [Flags] type StorageBlockFlags (line 18) | [Flags] type CompressionType (line 25) | public enum CompressionType class BundleFile (line 34) | public class BundleFile class Header (line 36) | public class Header class StorageBlock (line 48) | public class StorageBlock class Node (line 55) | public class Node method BundleFile (line 69) | public BundleFile(FileReader reader) method ReadHeaderAndBlocksInfo (line 105) | private void ReadHeaderAndBlocksInfo(EndianBinaryReader reader) method CreateBlocksStream (line 140) | private Stream CreateBlocksStream(string path) method ReadBlocksAndDirectory (line 157) | private void ReadBlocksAndDirectory(EndianBinaryReader reader, Stream ... method ReadFiles (line 190) | public void ReadFiles(Stream blocksStream, string path) method ReadHeader (line 218) | private void ReadHeader(EndianBinaryReader reader) method ReadBlocksInfoAndDirectory (line 230) | private void ReadBlocksInfoAndDirectory(EndianBinaryReader reader) method ReadBlocks (line 317) | private void ReadBlocks(EndianBinaryReader reader, Stream blocksStream) FILE: AssetStudio/ClassIDType.cs type ClassIDType (line 4) | public enum ClassIDType FILE: AssetStudio/Classes/Animation.cs class Animation (line 8) | public sealed class Animation : Behaviour method Animation (line 12) | public Animation(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/AnimationClip.cs class Keyframe (line 8) | public class Keyframe method Keyframe (line 19) | public Keyframe(ObjectReader reader, Func readerFunc) class AnimationCurve (line 34) | public class AnimationCurve method AnimationCurve (line 41) | public AnimationCurve(ObjectReader reader, Func readerFunc) class QuaternionCurve (line 60) | public class QuaternionCurve method QuaternionCurve (line 65) | public QuaternionCurve(ObjectReader reader) class PackedFloatVector (line 72) | public class PackedFloatVector method PackedFloatVector (line 80) | public PackedFloatVector(ObjectReader reader) method UnpackFloats (line 94) | public float[] UnpackFloats(int itemCountInChunk, int chunkStride, int... class PackedIntVector (line 133) | public class PackedIntVector method PackedIntVector (line 139) | public PackedIntVector(ObjectReader reader) method UnpackInts (line 151) | public int[] UnpackInts() class PackedQuatVector (line 178) | public class PackedQuatVector method PackedQuatVector (line 183) | public PackedQuatVector(ObjectReader reader) method UnpackQuats (line 193) | public Quaternion[] UnpackQuats() class CompressedAnimationCurve (line 258) | public class CompressedAnimationCurve method CompressedAnimationCurve (line 267) | public CompressedAnimationCurve(ObjectReader reader) class Vector3Curve (line 278) | public class Vector3Curve method Vector3Curve (line 283) | public Vector3Curve(ObjectReader reader) class FloatCurve (line 290) | public class FloatCurve method FloatCurve (line 299) | public FloatCurve(ObjectReader reader) class PPtrKeyframe (line 309) | public class PPtrKeyframe method PPtrKeyframe (line 315) | public PPtrKeyframe(ObjectReader reader) class PPtrCurve (line 322) | public class PPtrCurve method PPtrCurve (line 331) | public PPtrCurve(ObjectReader reader) class AABB (line 347) | public class AABB method AABB (line 352) | public AABB(ObjectReader reader) class xform (line 359) | public class xform method xform (line 365) | public xform(ObjectReader reader) class HandPose (line 374) | public class HandPose method HandPose (line 383) | public HandPose(ObjectReader reader) class HumanGoal (line 394) | public class HumanGoal method HumanGoal (line 402) | public HumanGoal(ObjectReader reader) class HumanPose (line 416) | public class HumanPose method HumanPose (line 427) | public HumanPose(ObjectReader reader) class StreamedClip (line 458) | public class StreamedClip method StreamedClip (line 463) | public StreamedClip(ObjectReader reader) class StreamedCurveKey (line 469) | public class StreamedCurveKey method StreamedCurveKey (line 478) | public StreamedCurveKey(BinaryReader reader) method CalculateNextInSlope (line 487) | public float CalculateNextInSlope(float dx, StreamedCurveKey rhs) class StreamedFrame (line 504) | public class StreamedFrame method StreamedFrame (line 509) | public StreamedFrame(BinaryReader reader) method ReadData (line 522) | public List ReadData() class DenseClip (line 556) | public class DenseClip method DenseClip (line 564) | public DenseClip(ObjectReader reader) class ConstantClip (line 574) | public class ConstantClip method ConstantClip (line 578) | public ConstantClip(ObjectReader reader) class ValueConstant (line 584) | public class ValueConstant method ValueConstant (line 591) | public ValueConstant(ObjectReader reader) class ValueArrayConstant (line 604) | public class ValueArrayConstant method ValueArrayConstant (line 608) | public ValueArrayConstant(ObjectReader reader) class Clip (line 619) | public class Clip method Clip (line 626) | public Clip(ObjectReader reader) method ConvertValueArrayToGenericBinding (line 641) | public AnimationClipBindingConstant ConvertValueArrayToGenericBinding() class ValueDelta (line 686) | public class ValueDelta method ValueDelta (line 691) | public ValueDelta(ObjectReader reader) class ClipMuscleConstant (line 698) | public class ClipMuscleConstant method ClipMuscleConstant (line 730) | public ClipMuscleConstant(ObjectReader reader) class GenericBinding (line 792) | public class GenericBinding method GenericBinding (line 802) | public GenericBinding() { } method GenericBinding (line 804) | public GenericBinding(ObjectReader reader) class AnimationClipBindingConstant (line 828) | public class AnimationClipBindingConstant method AnimationClipBindingConstant (line 833) | public AnimationClipBindingConstant() { } method AnimationClipBindingConstant (line 835) | public AnimationClipBindingConstant(ObjectReader reader) method FindBinding (line 852) | public GenericBinding FindBinding(int index) class AnimationEvent (line 888) | public class AnimationEvent method AnimationEvent (line 898) | public AnimationEvent(ObjectReader reader) type AnimationType (line 915) | public enum AnimationType class AnimationClip (line 922) | public sealed class AnimationClip : NamedObject method AnimationClip (line 944) | public AnimationClip(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Animator.cs class Animator (line 8) | public sealed class Animator : Behaviour method Animator (line 14) | public Animator(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/AnimatorController.cs class HumanPoseMask (line 8) | public class HumanPoseMask method HumanPoseMask (line 14) | public HumanPoseMask(ObjectReader reader) class SkeletonMaskElement (line 27) | public class SkeletonMaskElement method SkeletonMaskElement (line 32) | public SkeletonMaskElement(ObjectReader reader) class SkeletonMask (line 39) | public class SkeletonMask method SkeletonMask (line 43) | public SkeletonMask(ObjectReader reader) class LayerConstant (line 54) | public class LayerConstant method LayerConstant (line 66) | public LayerConstant(ObjectReader reader) class ConditionConstant (line 89) | public class ConditionConstant method ConditionConstant (line 96) | public ConditionConstant(ObjectReader reader) class TransitionConstant (line 105) | public class TransitionConstant method TransitionConstant (line 122) | public TransitionConstant(ObjectReader reader) class LeafInfoConstant (line 166) | public class LeafInfoConstant method LeafInfoConstant (line 171) | public LeafInfoConstant(ObjectReader reader) class MotionNeighborList (line 178) | public class MotionNeighborList method MotionNeighborList (line 182) | public MotionNeighborList(ObjectReader reader) class Blend2dDataConstant (line 188) | public class Blend2dDataConstant method Blend2dDataConstant (line 196) | public Blend2dDataConstant(ObjectReader reader) class Blend1dDataConstant (line 212) | public class Blend1dDataConstant // wrong labeled method Blend1dDataConstant (line 216) | public Blend1dDataConstant(ObjectReader reader) class BlendDirectDataConstant (line 222) | public class BlendDirectDataConstant method BlendDirectDataConstant (line 227) | public BlendDirectDataConstant(ObjectReader reader) class BlendTreeNodeConstant (line 235) | public class BlendTreeNodeConstant method BlendTreeNodeConstant (line 251) | public BlendTreeNodeConstant(ObjectReader reader) class BlendTreeConstant (line 300) | public class BlendTreeConstant method BlendTreeConstant (line 305) | public BlendTreeConstant(ObjectReader reader) class StateConstant (line 324) | public class StateConstant method StateConstant (line 344) | public StateConstant(ObjectReader reader) class SelectorTransitionConstant (line 418) | public class SelectorTransitionConstant method SelectorTransitionConstant (line 423) | public SelectorTransitionConstant(ObjectReader reader) class SelectorStateConstant (line 436) | public class SelectorStateConstant method SelectorStateConstant (line 442) | public SelectorStateConstant(ObjectReader reader) class StateMachineConstant (line 457) | public class StateMachineConstant method StateMachineConstant (line 465) | public StateMachineConstant(ObjectReader reader) class ValueArray (line 498) | public class ValueArray method ValueArray (line 508) | public ValueArray(ObjectReader reader) class ControllerConstant (line 553) | public class ControllerConstant method ControllerConstant (line 560) | public ControllerConstant(ObjectReader reader) class AnimatorController (line 581) | public sealed class AnimatorController : RuntimeAnimatorController method AnimatorController (line 585) | public AnimatorController(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/AnimatorOverrideController.cs class AnimationClipOverride (line 8) | public class AnimationClipOverride method AnimationClipOverride (line 13) | public AnimationClipOverride(ObjectReader reader) class AnimatorOverrideController (line 20) | public sealed class AnimatorOverrideController : RuntimeAnimatorController method AnimatorOverrideController (line 25) | public AnimatorOverrideController(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/AssetBundle.cs class AssetInfo (line 8) | public class AssetInfo method AssetInfo (line 14) | public AssetInfo(ObjectReader reader) class AssetBundle (line 22) | public sealed class AssetBundle : NamedObject method AssetBundle (line 27) | public AssetBundle(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/AudioClip.cs class AudioClip (line 9) | public sealed class AudioClip : NamedObject method AudioClip (line 34) | public AudioClip(ObjectReader reader) : base(reader) type FMODSoundType (line 95) | public enum FMODSoundType type AudioCompressionFormat (line 129) | public enum AudioCompressionFormat FILE: AssetStudio/Classes/Avatar.cs class Node (line 6) | public class Node method Node (line 11) | public Node(ObjectReader reader) class Limit (line 18) | public class Limit method Limit (line 23) | public Limit(ObjectReader reader) class Axes (line 39) | public class Axes method Axes (line 48) | public Axes(ObjectReader reader) class Skeleton (line 67) | public class Skeleton method Skeleton (line 74) | public Skeleton(ObjectReader reader) class SkeletonPose (line 94) | public class SkeletonPose method SkeletonPose (line 98) | public SkeletonPose(ObjectReader reader) class Hand (line 109) | public class Hand method Hand (line 113) | public Hand(ObjectReader reader) class Handle (line 119) | public class Handle method Handle (line 125) | public Handle(ObjectReader reader) class Collider (line 133) | public class Collider method Collider (line 145) | public Collider(ObjectReader reader) class Human (line 159) | public class Human method Human (line 183) | public Human(ObjectReader reader) class AvatarConstant (line 236) | public class AvatarConstant method AvatarConstant (line 251) | public AvatarConstant(ObjectReader reader) class Avatar (line 286) | public sealed class Avatar : NamedObject method Avatar (line 292) | public Avatar(ObjectReader reader) : base(reader) method FindBonePath (line 307) | public string FindBonePath(uint hash) FILE: AssetStudio/Classes/Behaviour.cs class Behaviour (line 8) | public abstract class Behaviour : Component method Behaviour (line 12) | protected Behaviour(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/BuildSettings.cs class BuildSettings (line 8) | public sealed class BuildSettings : Object method BuildSettings (line 12) | public BuildSettings(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Component.cs class Component (line 8) | public abstract class Component : EditorExtension method Component (line 12) | protected Component(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/EditorExtension.cs class EditorExtension (line 8) | public abstract class EditorExtension : Object method EditorExtension (line 10) | protected EditorExtension(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Font.cs class Font (line 8) | public sealed class Font : NamedObject method Font (line 12) | public Font(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/GameObject.cs class GameObject (line 8) | public sealed class GameObject : EditorExtension method GameObject (line 20) | public GameObject(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Material.cs class UnityTexEnv (line 5) | public class UnityTexEnv method UnityTexEnv (line 11) | public UnityTexEnv(ObjectReader reader) class UnityPropertySheet (line 19) | public class UnityPropertySheet method UnityPropertySheet (line 26) | public UnityPropertySheet(ObjectReader reader) class Material (line 63) | public sealed class Material : NamedObject method Material (line 68) | public Material(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Mesh.cs class MinMaxAABB (line 9) | public class MinMaxAABB method MinMaxAABB (line 14) | public MinMaxAABB(BinaryReader reader) class CompressedMesh (line 21) | public class CompressedMesh method CompressedMesh (line 37) | public CompressedMesh(ObjectReader reader) class StreamInfo (line 72) | public class StreamInfo method StreamInfo (line 81) | public StreamInfo() { } method StreamInfo (line 83) | public StreamInfo(ObjectReader reader) class ChannelInfo (line 104) | public class ChannelInfo method ChannelInfo (line 111) | public ChannelInfo() { } method ChannelInfo (line 113) | public ChannelInfo(ObjectReader reader) class VertexData (line 122) | public class VertexData method VertexData (line 130) | public VertexData(ObjectReader reader) method GetStreams (line 181) | private void GetStreams(int[] version) method GetChannels (line 216) | private void GetChannels(int[] version) class BoneWeights4 (line 263) | public class BoneWeights4 method BoneWeights4 (line 268) | public BoneWeights4() method BoneWeights4 (line 274) | public BoneWeights4(ObjectReader reader) class BlendShapeVertex (line 281) | public class BlendShapeVertex method BlendShapeVertex (line 288) | public BlendShapeVertex(ObjectReader reader) class MeshBlendShape (line 297) | public class MeshBlendShape method MeshBlendShape (line 304) | public MeshBlendShape(ObjectReader reader) class MeshBlendShapeChannel (line 328) | public class MeshBlendShapeChannel method MeshBlendShapeChannel (line 335) | public MeshBlendShapeChannel(ObjectReader reader) class BlendShapeData (line 344) | public class BlendShapeData method BlendShapeData (line 351) | public BlendShapeData(ObjectReader reader) type GfxPrimitiveType (line 399) | public enum GfxPrimitiveType class SubMesh (line 409) | public class SubMesh method SubMesh (line 420) | public SubMesh(ObjectReader reader) class Mesh (line 447) | public sealed class Mesh : NamedObject method Mesh (line 475) | public Mesh(ObjectReader reader) : base(reader) method ProcessData (line 683) | private void ProcessData() method ReadVertexData (line 706) | private void ReadVertexData() method DecompressCompressedMesh (line 866) | private void DecompressCompressedMesh() method GetTriangles (line 1057) | private void GetTriangles() method InitMSkin (line 1129) | private void InitMSkin() method SetUV (line 1138) | private void SetUV(int uv, float[] m_UV) method GetUV (line 1171) | public float[] GetUV(int uv) class MeshHelper (line 1197) | public static class MeshHelper type VertexChannelFormat (line 1199) | public enum VertexChannelFormat type VertexFormat2017 (line 1208) | public enum VertexFormat2017 type VertexFormat (line 1225) | public enum VertexFormat method ToVertexFormat (line 1241) | public static VertexFormat ToVertexFormat(int format, int[] version) method GetFormatSize (line 1301) | public static uint GetFormatSize(VertexFormat format) method IsIntFormat (line 1325) | public static bool IsIntFormat(VertexFormat format) method BytesToFloatArray (line 1330) | public static float[] BytesToFloatArray(byte[] inputBytes, VertexForma... method BytesToIntArray (line 1362) | public static int[] BytesToIntArray(byte[] inputBytes, VertexFormat fo... FILE: AssetStudio/Classes/MeshFilter.cs class MeshFilter (line 8) | public sealed class MeshFilter : Component method MeshFilter (line 12) | public MeshFilter(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/MeshRenderer.cs class MeshRenderer (line 8) | public sealed class MeshRenderer : Renderer method MeshRenderer (line 10) | public MeshRenderer(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/MonoBehaviour.cs class MonoBehaviour (line 8) | public sealed class MonoBehaviour : Behaviour method MonoBehaviour (line 13) | public MonoBehaviour(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/MonoScript.cs class MonoScript (line 8) | public sealed class MonoScript : NamedObject method MonoScript (line 14) | public MonoScript(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/MovieTexture.cs class MovieTexture (line 8) | public sealed class MovieTexture : Texture method MovieTexture (line 13) | public MovieTexture(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/NamedObject.cs class NamedObject (line 8) | public class NamedObject : EditorExtension method NamedObject (line 12) | protected NamedObject(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Object.cs class Object (line 5) | public class Object method Object (line 17) | public Object(ObjectReader reader) method Dump (line 36) | public string Dump() method Dump (line 45) | public string Dump(TypeTree m_Type) method ToType (line 54) | public OrderedDictionary ToType() method ToType (line 63) | public OrderedDictionary ToType(TypeTree m_Type) method GetRawData (line 72) | public byte[] GetRawData() FILE: AssetStudio/Classes/PPtr.cs class PPtr (line 5) | public sealed class PPtr where T : Object method PPtr (line 13) | public PPtr(ObjectReader reader) method TryGetAssetsFile (line 20) | private bool TryGetAssetsFile(out SerializedFile result) method TryGet (line 56) | public bool TryGet(out T result) method TryGet (line 74) | public bool TryGet(out T2 result) where T2 : Object method Set (line 92) | public void Set(T m_Object) FILE: AssetStudio/Classes/PlayerSettings.cs class PlayerSettings (line 8) | public sealed class PlayerSettings : Object method PlayerSettings (line 13) | public PlayerSettings(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/RectTransform.cs class RectTransform (line 8) | public sealed class RectTransform : Transform method RectTransform (line 10) | public RectTransform(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Renderer.cs class StaticBatchInfo (line 8) | public class StaticBatchInfo method StaticBatchInfo (line 13) | public StaticBatchInfo(ObjectReader reader) class Renderer (line 20) | public abstract class Renderer : Component method Renderer (line 26) | protected Renderer(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/ResourceManager.cs class ResourceManager (line 5) | public class ResourceManager : Object method ResourceManager (line 9) | public ResourceManager(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/RuntimeAnimatorController.cs class RuntimeAnimatorController (line 8) | public abstract class RuntimeAnimatorController : NamedObject method RuntimeAnimatorController (line 10) | protected RuntimeAnimatorController(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Shader.cs class Hash128 (line 8) | public class Hash128 method Hash128 (line 12) | public Hash128(BinaryReader reader) class StructParameter (line 18) | public class StructParameter method StructParameter (line 23) | public StructParameter(BinaryReader reader) class SamplerParameter (line 46) | public class SamplerParameter method SamplerParameter (line 51) | public SamplerParameter(BinaryReader reader) type TextureDimension (line 57) | public enum TextureDimension class SerializedTextureProperty (line 69) | public class SerializedTextureProperty method SerializedTextureProperty (line 74) | public SerializedTextureProperty(BinaryReader reader) type SerializedPropertyType (line 81) | public enum SerializedPropertyType class SerializedProperty (line 91) | public class SerializedProperty method SerializedProperty (line 101) | public SerializedProperty(BinaryReader reader) class SerializedProperties (line 113) | public class SerializedProperties method SerializedProperties (line 117) | public SerializedProperties(BinaryReader reader) class SerializedShaderFloatValue (line 128) | public class SerializedShaderFloatValue method SerializedShaderFloatValue (line 133) | public SerializedShaderFloatValue(BinaryReader reader) class SerializedShaderRTBlendState (line 140) | public class SerializedShaderRTBlendState method SerializedShaderRTBlendState (line 150) | public SerializedShaderRTBlendState(BinaryReader reader) class SerializedStencilOp (line 162) | public class SerializedStencilOp method SerializedStencilOp (line 169) | public SerializedStencilOp(BinaryReader reader) class SerializedShaderVectorValue (line 178) | public class SerializedShaderVectorValue method SerializedShaderVectorValue (line 186) | public SerializedShaderVectorValue(BinaryReader reader) type FogMode (line 196) | public enum FogMode class SerializedShaderState (line 205) | public class SerializedShaderState method SerializedShaderState (line 234) | public SerializedShaderState(ObjectReader reader) class ShaderBindChannel (line 279) | public class ShaderBindChannel method ShaderBindChannel (line 284) | public ShaderBindChannel(BinaryReader reader) class ParserBindChannels (line 291) | public class ParserBindChannels method ParserBindChannels (line 296) | public ParserBindChannels(BinaryReader reader) class VectorParameter (line 310) | public class VectorParameter method VectorParameter (line 318) | public VectorParameter(BinaryReader reader) class MatrixParameter (line 329) | public class MatrixParameter method MatrixParameter (line 337) | public MatrixParameter(BinaryReader reader) class TextureParameter (line 348) | public class TextureParameter method TextureParameter (line 355) | public TextureParameter(ObjectReader reader) class BufferBinding (line 371) | public class BufferBinding method BufferBinding (line 377) | public BufferBinding(ObjectReader reader) class ConstantBuffer (line 390) | public class ConstantBuffer method ConstantBuffer (line 399) | public ConstantBuffer(ObjectReader reader) class UAVParameter (line 441) | public class UAVParameter method UAVParameter (line 447) | public UAVParameter(BinaryReader reader) type ShaderGpuProgramType (line 455) | public enum ShaderGpuProgramType class SerializedProgramParameters (line 492) | public class SerializedProgramParameters method SerializedProgramParameters (line 503) | public SerializedProgramParameters(ObjectReader reader) class SerializedSubProgram (line 563) | public class SerializedSubProgram method SerializedSubProgram (line 580) | public SerializedSubProgram(ObjectReader reader) class SerializedProgram (line 691) | public class SerializedProgram method SerializedProgram (line 697) | public SerializedProgram(ObjectReader reader) type PassType (line 725) | public enum PassType class SerializedPass (line 732) | public class SerializedPass method SerializedPass (line 755) | public SerializedPass(ObjectReader reader) class SerializedTagMap (line 816) | public class SerializedTagMap method SerializedTagMap (line 820) | public SerializedTagMap(BinaryReader reader) class SerializedSubShader (line 831) | public class SerializedSubShader method SerializedSubShader (line 837) | public SerializedSubShader(ObjectReader reader) class SerializedShaderDependency (line 851) | public class SerializedShaderDependency method SerializedShaderDependency (line 856) | public SerializedShaderDependency(BinaryReader reader) class SerializedCustomEditorForRenderPipeline (line 863) | public class SerializedCustomEditorForRenderPipeline method SerializedCustomEditorForRenderPipeline (line 868) | public SerializedCustomEditorForRenderPipeline(BinaryReader reader) class SerializedShader (line 875) | public class SerializedShader method SerializedShader (line 888) | public SerializedShader(ObjectReader reader) type ShaderCompilerPlatform (line 934) | public enum ShaderCompilerPlatform class Shader (line 964) | public class Shader : NamedObject method Shader (line 978) | public Shader(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/SkinnedMeshRenderer.cs class SkinnedMeshRenderer (line 8) | public sealed class SkinnedMeshRenderer : Renderer method SkinnedMeshRenderer (line 14) | public SkinnedMeshRenderer(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Sprite.cs class SecondarySpriteTexture (line 7) | public class SecondarySpriteTexture method SecondarySpriteTexture (line 12) | public SecondarySpriteTexture(ObjectReader reader) type SpritePackingRotation (line 19) | public enum SpritePackingRotation type SpritePackingMode (line 28) | public enum SpritePackingMode type SpriteMeshType (line 34) | public enum SpriteMeshType class SpriteSettings (line 40) | public class SpriteSettings method SpriteSettings (line 49) | public SpriteSettings(BinaryReader reader) class SpriteVertex (line 61) | public class SpriteVertex method SpriteVertex (line 66) | public SpriteVertex(ObjectReader reader) class SpriteRenderData (line 78) | public class SpriteRenderData method SpriteRenderData (line 97) | public SpriteRenderData(ObjectReader reader) class Rectf (line 178) | public class Rectf method Rectf (line 185) | public Rectf(BinaryReader reader) class Sprite (line 194) | public sealed class Sprite : NamedObject method Sprite (line 209) | public Sprite(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/SpriteAtlas.cs class SpriteAtlasData (line 6) | public class SpriteAtlasData method SpriteAtlasData (line 18) | public SpriteAtlasData(ObjectReader reader) class SpriteAtlas (line 45) | public sealed class SpriteAtlas : NamedObject method SpriteAtlas (line 51) | public SpriteAtlas(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/TextAsset.cs class TextAsset (line 9) | public sealed class TextAsset : NamedObject method TextAsset (line 13) | public TextAsset(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Texture.cs class Texture (line 8) | public abstract class Texture : NamedObject method Texture (line 10) | protected Texture(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/Texture2D.cs class StreamingInfo (line 5) | public class StreamingInfo method StreamingInfo (line 11) | public StreamingInfo(ObjectReader reader) class GLTextureSettings (line 28) | public class GLTextureSettings method GLTextureSettings (line 35) | public GLTextureSettings(ObjectReader reader) class Texture2D (line 55) | public sealed class Texture2D : Texture method Texture2D (line 66) | public Texture2D(ObjectReader reader) : base(reader) type TextureFormat (line 147) | public enum TextureFormat FILE: AssetStudio/Classes/Transform.cs class Transform (line 8) | public class Transform : Component method Transform (line 16) | public Transform(ObjectReader reader) : base(reader) FILE: AssetStudio/Classes/VideoClip.cs class StreamedResource (line 5) | public class StreamedResource method StreamedResource (line 11) | public StreamedResource(BinaryReader reader) class VideoClip (line 19) | public sealed class VideoClip : NamedObject method VideoClip (line 25) | public VideoClip(ObjectReader reader) : base(reader) FILE: AssetStudio/CommonString.cs class CommonString (line 5) | public static class CommonString FILE: AssetStudio/EndianBinaryReader.cs class EndianBinaryReader (line 7) | public class EndianBinaryReader : BinaryReader method EndianBinaryReader (line 13) | public EndianBinaryReader(Stream stream, EndianType endian = EndianTyp... method ReadInt16 (line 25) | public override short ReadInt16() method ReadInt32 (line 35) | public override int ReadInt32() method ReadInt64 (line 45) | public override long ReadInt64() method ReadUInt16 (line 55) | public override ushort ReadUInt16() method ReadUInt32 (line 65) | public override uint ReadUInt32() method ReadUInt64 (line 75) | public override ulong ReadUInt64() method ReadSingle (line 85) | public override float ReadSingle() method ReadDouble (line 96) | public override double ReadDouble() FILE: AssetStudio/EndianType.cs type EndianType (line 9) | public enum EndianType FILE: AssetStudio/Extensions/BinaryReaderExtensions.cs class BinaryReaderExtensions (line 8) | public static class BinaryReaderExtensions method AlignStream (line 10) | public static void AlignStream(this BinaryReader reader) method AlignStream (line 15) | public static void AlignStream(this BinaryReader reader, int alignment) method ReadAlignedString (line 25) | public static string ReadAlignedString(this BinaryReader reader) method ReadStringToNull (line 38) | public static string ReadStringToNull(this BinaryReader reader, int ma... method ReadQuaternion (line 55) | public static Quaternion ReadQuaternion(this BinaryReader reader) method ReadVector2 (line 60) | public static Vector2 ReadVector2(this BinaryReader reader) method ReadVector3 (line 65) | public static Vector3 ReadVector3(this BinaryReader reader) method ReadVector4 (line 70) | public static Vector4 ReadVector4(this BinaryReader reader) method ReadColor4 (line 75) | public static Color ReadColor4(this BinaryReader reader) method ReadMatrix (line 80) | public static Matrix4x4 ReadMatrix(this BinaryReader reader) method ReadArray (line 85) | private static T[] ReadArray(Func del, int length) method ReadBooleanArray (line 95) | public static bool[] ReadBooleanArray(this BinaryReader reader) method ReadUInt8Array (line 100) | public static byte[] ReadUInt8Array(this BinaryReader reader) method ReadUInt16Array (line 105) | public static ushort[] ReadUInt16Array(this BinaryReader reader) method ReadInt32Array (line 110) | public static int[] ReadInt32Array(this BinaryReader reader) method ReadInt32Array (line 115) | public static int[] ReadInt32Array(this BinaryReader reader, int length) method ReadUInt32Array (line 120) | public static uint[] ReadUInt32Array(this BinaryReader reader) method ReadUInt32ArrayArray (line 125) | public static uint[][] ReadUInt32ArrayArray(this BinaryReader reader) method ReadUInt32Array (line 130) | public static uint[] ReadUInt32Array(this BinaryReader reader, int len... method ReadSingleArray (line 135) | public static float[] ReadSingleArray(this BinaryReader reader) method ReadSingleArray (line 140) | public static float[] ReadSingleArray(this BinaryReader reader, int le... method ReadStringArray (line 145) | public static string[] ReadStringArray(this BinaryReader reader) method ReadVector2Array (line 150) | public static Vector2[] ReadVector2Array(this BinaryReader reader) method ReadVector4Array (line 155) | public static Vector4[] ReadVector4Array(this BinaryReader reader) method ReadMatrixArray (line 160) | public static Matrix4x4[] ReadMatrixArray(this BinaryReader reader) FILE: AssetStudio/Extensions/BinaryWriterExtensions.cs class BinaryWriterExtensions (line 7) | public static class BinaryWriterExtensions method AlignStream (line 9) | public static void AlignStream(this BinaryWriter writer, int alignment) method WriteAlignedString (line 19) | public static void WriteAlignedString(this BinaryWriter writer, string... FILE: AssetStudio/Extensions/StreamExtensions.cs class StreamExtensions (line 5) | public static class StreamExtensions method CopyTo (line 9) | public static void CopyTo(this Stream source, Stream destination, long... FILE: AssetStudio/FileIdentifier.cs class FileIdentifier (line 8) | public class FileIdentifier FILE: AssetStudio/FileReader.cs class FileReader (line 6) | public class FileReader : EndianBinaryReader method FileReader (line 17) | public FileReader(string path) : this(path, File.Open(path, FileMode.O... method FileReader (line 19) | public FileReader(string path, Stream stream) : base(stream, EndianTyp... method CheckFileType (line 26) | private FileType CheckFileType() method IsSerializedFile (line 67) | private bool IsSerializedFile() FILE: AssetStudio/FileType.cs type FileType (line 9) | public enum FileType FILE: AssetStudio/IImported.cs type IImported (line 7) | public interface IImported class ImportedFrame (line 17) | public class ImportedFrame method ImportedFrame (line 46) | public ImportedFrame(int childrenCount = 0) method AddChild (line 51) | public void AddChild(ImportedFrame obj) method Remove (line 58) | public void Remove(ImportedFrame frame) method FindFrameByPath (line 63) | public ImportedFrame FindFrameByPath(string path) method FindRelativeFrameWithPath (line 76) | public ImportedFrame FindRelativeFrameWithPath(string path) method FindFrame (line 98) | public ImportedFrame FindFrame(string name) method FindChild (line 115) | public ImportedFrame FindChild(string name, bool recursive = true) method FindChilds (line 138) | public IEnumerable FindChilds(string name) class ImportedMesh (line 154) | public class ImportedMesh class ImportedSubmesh (line 166) | public class ImportedSubmesh class ImportedVertex (line 173) | public class ImportedVertex class ImportedFace (line 184) | public class ImportedFace class ImportedBone (line 189) | public class ImportedBone class ImportedMaterial (line 195) | public class ImportedMaterial class ImportedMaterialTexture (line 208) | public class ImportedMaterialTexture class ImportedTexture (line 216) | public class ImportedTexture method ImportedTexture (line 221) | public ImportedTexture(MemoryStream stream, string name) class ImportedKeyframedAnimation (line 228) | public class ImportedKeyframedAnimation method FindTrack (line 234) | public ImportedAnimationKeyframedTrack FindTrack(string path) class ImportedAnimationKeyframedTrack (line 247) | public class ImportedAnimationKeyframedTrack class ImportedKeyframe (line 256) | public class ImportedKeyframe method ImportedKeyframe (line 261) | public ImportedKeyframe(float time, T value) class ImportedBlendShape (line 268) | public class ImportedBlendShape class ImportedMorph (line 274) | public class ImportedMorph class ImportedMorphChannel (line 280) | public class ImportedMorphChannel class ImportedMorphKeyframe (line 286) | public class ImportedMorphKeyframe class ImportedMorphVertex (line 294) | public class ImportedMorphVertex class ImportedHelpers (line 300) | public static class ImportedHelpers method FindMesh (line 302) | public static ImportedMesh FindMesh(string path, List im... method FindMaterial (line 315) | public static ImportedMaterial FindMaterial(string name, List selectFile) method DecompressGZip (line 54) | public static FileReader DecompressGZip(FileReader reader) method DecompressBrotli (line 68) | public static FileReader DecompressBrotli(FileReader reader) FILE: AssetStudio/LocalSerializedObjectIdentifier.cs class LocalSerializedObjectIdentifier (line 8) | public class LocalSerializedObjectIdentifier FILE: AssetStudio/Logger.cs class Logger (line 8) | public static class Logger method Verbose (line 12) | public static void Verbose(string message) => Default.Log(LoggerEvent.... method Debug (line 13) | public static void Debug(string message) => Default.Log(LoggerEvent.De... method Info (line 14) | public static void Info(string message) => Default.Log(LoggerEvent.Inf... method Warning (line 15) | public static void Warning(string message) => Default.Log(LoggerEvent.... method Error (line 16) | public static void Error(string message) => Default.Log(LoggerEvent.Er... method Error (line 18) | public static void Error(string message, Exception e) FILE: AssetStudio/Math/Color.cs type Color (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Color (line 14) | public Color(float r, float g, float b, float a) method GetHashCode (line 22) | public override int GetHashCode() method Equals (line 27) | public override bool Equals(object other) method Equals (line 34) | public bool Equals(Color other) FILE: AssetStudio/Math/Half.cs type Half (line 25) | [Serializable] method Half (line 66) | public Half(float value) { this = HalfHelper.SingleToHalf(value); } method Half (line 71) | public Half(int value) : this((float)value) { } method Half (line 76) | public Half(long value) : this((float)value) { } method Half (line 81) | public Half(double value) : this((float)value) { } method Half (line 86) | public Half(decimal value) : this((float)value) { } method Half (line 91) | public Half(uint value) : this((float)value) { } method Half (line 96) | public Half(ulong value) : this((float)value) { } method Negate (line 106) | public static Half Negate(Half half) { return -half; } method Add (line 113) | public static Half Add(Half half1, Half half2) { return half1 + half2; } method Subtract (line 120) | public static Half Subtract(Half half1, Half half2) { return half1 - h... method Multiply (line 127) | public static Half Multiply(Half half1, Half half2) { return half1 * h... method Divide (line 135) | public static Half Divide(Half half1, Half half2) { return half1 / hal... method CompareTo (line 389) | public int CompareTo(Half other) method CompareTo (line 425) | public int CompareTo(object obj) method Equals (line 451) | public bool Equals(Half other) method Equals (line 461) | public override bool Equals(object obj) method GetHashCode (line 479) | public override int GetHashCode() method GetTypeCode (line 487) | public TypeCode GetTypeCode() method GetBytes (line 498) | public static byte[] GetBytes(Half value) method GetBits (line 507) | public static ushort GetBits(Half value) method ToHalf (line 524) | public static Half ToHalf(byte[] value, int startIndex) method ToHalf (line 533) | public static Half ToHalf(ushort bits) method Sign (line 547) | public static int Sign(Half value) method Abs (line 572) | public static Half Abs(Half value) method Max (line 585) | public static Half Max(Half value1, Half value2) method Min (line 598) | public static Half Min(Half value1, Half value2) method IsNaN (line 609) | public static bool IsNaN(Half half) method IsInfinity (line 618) | public static bool IsInfinity(Half half) method IsNegativeInfinity (line 627) | public static bool IsNegativeInfinity(Half half) method IsPositiveInfinity (line 636) | public static bool IsPositiveInfinity(Half half) method Parse (line 650) | public static Half Parse(string value) method Parse (line 664) | public static Half Parse(string value, IFormatProvider provider) method Parse (line 685) | public static Half Parse(string value, NumberStyles style) method Parse (line 708) | public static Half Parse(string value, NumberStyles style, IFormatProv... method TryParse (line 725) | public static bool TryParse(string value, out Half result) method TryParse (line 760) | public static bool TryParse(string value, NumberStyles style, IFormatP... method ToString (line 780) | public override string ToString() method ToString (line 790) | public string ToString(IFormatProvider formatProvider) method ToString (line 799) | public string ToString(string format) method ToString (line 811) | public string ToString(string format, IFormatProvider formatProvider) method ToSingle (line 818) | float IConvertible.ToSingle(IFormatProvider provider) method GetTypeCode (line 822) | TypeCode IConvertible.GetTypeCode() method ToBoolean (line 826) | bool IConvertible.ToBoolean(IFormatProvider provider) method ToByte (line 830) | byte IConvertible.ToByte(IFormatProvider provider) method ToChar (line 834) | char IConvertible.ToChar(IFormatProvider provider) method ToDateTime (line 838) | DateTime IConvertible.ToDateTime(IFormatProvider provider) method ToDecimal (line 842) | decimal IConvertible.ToDecimal(IFormatProvider provider) method ToDouble (line 846) | double IConvertible.ToDouble(IFormatProvider provider) method ToInt16 (line 850) | short IConvertible.ToInt16(IFormatProvider provider) method ToInt32 (line 854) | int IConvertible.ToInt32(IFormatProvider provider) method ToInt64 (line 858) | long IConvertible.ToInt64(IFormatProvider provider) method ToSByte (line 862) | sbyte IConvertible.ToSByte(IFormatProvider provider) method ToString (line 866) | string IConvertible.ToString(IFormatProvider provider) method ToType (line 870) | object IConvertible.ToType(Type conversionType, IFormatProvider provider) method ToUInt16 (line 874) | ushort IConvertible.ToUInt16(IFormatProvider provider) method ToUInt32 (line 878) | uint IConvertible.ToUInt32(IFormatProvider provider) method ToUInt64 (line 882) | ulong IConvertible.ToUInt64(IFormatProvider provider) FILE: AssetStudio/Math/HalfHelper.cs class HalfHelper (line 14) | [ComVisible(false)] method ConvertMantissa (line 24) | private static uint ConvertMantissa(int i) method GenerateMantissaTable (line 40) | private static uint[] GenerateMantissaTable() method GenerateExponentTable (line 55) | private static uint[] GenerateExponentTable() method GenerateOffsetTable (line 73) | private static ushort[] GenerateOffsetTable() method GenerateBaseTable (line 89) | private static ushort[] GenerateBaseTable() method GenerateShiftTable (line 124) | private static sbyte[] GenerateShiftTable() method HalfToSingle (line 172) | public static float HalfToSingle(Half half) method SingleToHalf (line 178) | public static Half SingleToHalf(float single) method Negate (line 186) | public static Half Negate(Half half) method Abs (line 190) | public static Half Abs(Half half) method IsNaN (line 195) | public static bool IsNaN(Half half) method IsInfinity (line 199) | public static bool IsInfinity(Half half) method IsPositiveInfinity (line 203) | public static bool IsPositiveInfinity(Half half) method IsNegativeInfinity (line 207) | public static bool IsNegativeInfinity(Half half) FILE: AssetStudio/Math/Matrix4x4.cs type Matrix4x4 (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Matrix4x4 (line 29) | public Matrix4x4(float[] values) method GetHashCode (line 115) | public override int GetHashCode() method Equals (line 120) | public override bool Equals(object other) method Equals (line 127) | public bool Equals(Matrix4x4 other) method GetColumn (line 135) | public Vector4 GetColumn(int index) method GetRow (line 147) | public Vector4 GetRow(int index) method Scale (line 198) | public static Matrix4x4 Scale(Vector3 vector) method Translate (line 208) | public static Matrix4x4 Translate(Vector3 vector) method Rotate (line 218) | public static Matrix4x4 Rotate(Quaternion q) FILE: AssetStudio/Math/Quaternion.cs type Quaternion (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Quaternion (line 14) | public Quaternion(float x, float y, float z, float w) method GetHashCode (line 49) | public override int GetHashCode() method Equals (line 54) | public override bool Equals(object other) method Equals (line 61) | public bool Equals(Quaternion other) method Dot (line 66) | public static float Dot(Quaternion a, Quaternion b) method IsEqualUsingDot (line 71) | private static bool IsEqualUsingDot(float dot) FILE: AssetStudio/Math/Vector2.cs type Vector2 (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Vector2 (line 12) | public Vector2(float x, float y) method GetHashCode (line 41) | public override int GetHashCode() method Equals (line 46) | public override bool Equals(object other) method Equals (line 53) | public bool Equals(Vector2 other) method Normalize (line 58) | public void Normalize() method Length (line 74) | public float Length() method LengthSquared (line 79) | public float LengthSquared() FILE: AssetStudio/Math/Vector3.cs type Vector3 (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Vector3 (line 13) | public Vector3(float x, float y, float z) method GetHashCode (line 45) | public override int GetHashCode() method Equals (line 50) | public override bool Equals(object other) method Equals (line 57) | public bool Equals(Vector3 other) method Normalize (line 62) | public void Normalize() method Length (line 80) | public float Length() method LengthSquared (line 85) | public float LengthSquared() FILE: AssetStudio/Math/Vector4.cs type Vector4 (line 6) | [StructLayout(LayoutKind.Sequential, Pack = 4)] method Vector4 (line 14) | public Vector4(float x, float y, float z, float w) method Vector4 (line 22) | public Vector4(Vector3 value, float w) method GetHashCode (line 57) | public override int GetHashCode() method Equals (line 62) | public override bool Equals(object other) method Equals (line 69) | public bool Equals(Vector4 other) method Normalize (line 74) | public void Normalize() method Length (line 94) | public float Length() method LengthSquared (line 99) | public float LengthSquared() FILE: AssetStudio/ObjectInfo.cs class ObjectInfo (line 8) | public class ObjectInfo FILE: AssetStudio/ObjectReader.cs class ObjectReader (line 9) | public class ObjectReader : EndianBinaryReader method ObjectReader (line 23) | public ObjectReader(EndianBinaryReader reader, SerializedFile assetsFi... method Reset (line 42) | public void Reset() FILE: AssetStudio/Progress.cs class Progress (line 5) | public static class Progress method Reset (line 10) | public static void Reset() method Report (line 16) | public static void Report(int current, int total) method Report (line 22) | private static void Report(int value) FILE: AssetStudio/ResourceReader.cs class ResourceReader (line 5) | public class ResourceReader method ResourceReader (line 16) | public ResourceReader(string path, SerializedFile assetsFile, long off... method ResourceReader (line 25) | public ResourceReader(BinaryReader reader, long offset, long size) method GetReader (line 32) | private BinaryReader GetReader() method GetData (line 67) | public byte[] GetData() method GetData (line 74) | public void GetData(byte[] buff) method WriteData (line 81) | public void WriteData(string path) FILE: AssetStudio/SerializedFile.cs class SerializedFile (line 9) | public class SerializedFile method SerializedFile (line 34) | public SerializedFile(FileReader reader, AssetsManager assetsManager) method SetVersion (line 220) | public void SetVersion(string stringVersion) method ReadSerializedType (line 232) | private SerializedType ReadSerializedType(bool isRefType) method ReadTypeTree (line 291) | private void ReadTypeTree(TypeTree m_Type, int level = 0) method TypeTreeBlobRead (line 321) | private void TypeTreeBlobRead(TypeTree m_Type) method AddObject (line 371) | public void AddObject(Object obj) FILE: AssetStudio/SerializedFileFormatVersion.cs type SerializedFileFormatVersion (line 9) | public enum SerializedFileFormatVersion FILE: AssetStudio/SerializedFileHeader.cs class SerializedFileHeader (line 8) | public class SerializedFileHeader FILE: AssetStudio/SerializedType.cs class SerializedType (line 8) | public class SerializedType FILE: AssetStudio/SevenZipHelper.cs class SevenZipHelper (line 8) | public static class SevenZipHelper method StreamDecompress (line 10) | public static MemoryStream StreamDecompress(MemoryStream inStream) method StreamDecompress (line 37) | public static void StreamDecompress(Stream compressedStream, Stream de... FILE: AssetStudio/StreamFile.cs class StreamFile (line 5) | public class StreamFile FILE: AssetStudio/TypeTree.cs class TypeTree (line 9) | public class TypeTree FILE: AssetStudio/TypeTreeHelper.cs class TypeTreeHelper (line 9) | public static class TypeTreeHelper method ReadTypeString (line 11) | public static string ReadTypeString(TypeTree m_Type, ObjectReader reader) method ReadStringValue (line 28) | private static void ReadStringValue(StringBuilder sb, List m_Nodes, BinaryRead... method GetNodes (line 308) | private static List GetNodes(List m_Nodes,... FILE: AssetStudio/TypeTreeNode.cs class TypeTreeNode (line 8) | public class TypeTreeNode method TypeTreeNode (line 22) | public TypeTreeNode() { } method TypeTreeNode (line 24) | public TypeTreeNode(string type, string name, int level, bool align) FILE: AssetStudio/WebFile.cs class WebFile (line 7) | public class WebFile class WebData (line 11) | private class WebData method WebFile (line 18) | public WebFile(EndianBinaryReader reader) FILE: AssetStudioFBXNative/api.cpp function AsUtilQuaternionToEuler (line 13) | AsUtilQuaternionToEuler(float qx, float qy, float qz, float qw, float* v... function AsUtilEulerToQuaternion (line 35) | AsUtilEulerToQuaternion(float vx, float vy, float vz, float* qx, float* ... function AsFbxCreateContext (line 74) | AsFbxCreateContext() function AsFbxInitializeContext (line 79) | AsFbxInitializeContext(AsFbxContext* pContext, const char* pFileName, fl... function AsFbxDisposeContext (line 158) | AsFbxDisposeContext(AsFbxContext** ppContext) function AsFbxSetFramePaths (line 168) | AsFbxSetFramePaths(AsFbxContext* pContext, const char* ppPaths[], int32_... function AsFbxExportScene (line 183) | AsFbxExportScene(AsFbxContext* pContext) function AsFbxGetSceneRootNode (line 199) | AsFbxGetSceneRootNode(AsFbxContext* pContext) function AsFbxExportSingleFrame (line 214) | AsFbxExportSingleFrame(AsFbxContext* pContext, FbxNode* pParentNode, con... function AsFbxSetJointsNode_CastToBone (line 245) | AsFbxSetJointsNode_CastToBone(AsFbxContext* pContext, FbxNode* pNode, fl... function AsFbxSetJointsNode_BoneInPath (line 263) | AsFbxSetJointsNode_BoneInPath(AsFbxContext* pContext, FbxNode* pNode, fl... function AsFbxSetJointsNode_Generic (line 286) | AsFbxSetJointsNode_Generic(AsFbxContext* pContext, FbxNode* pNode) function AsFbxPrepareMaterials (line 308) | AsFbxPrepareMaterials(AsFbxContext* pContext, int32_t materialCount, int... function AsFbxCreateTexture (line 322) | AsFbxCreateTexture(AsFbxContext* pContext, const char* pMatTexName) function AsFbxLinkTexture (line 347) | AsFbxLinkTexture(int32_t dest, FbxFileTexture* pTexture, FbxSurfacePhong... function AsFbxMeshCreateClusterArray (line 383) | AsFbxMeshCreateClusterArray(int32_t boneCount) function AsFbxMeshDisposeClusterArray (line 388) | AsFbxMeshDisposeClusterArray(FbxArray** ppArray) function AsFbxMeshCreateCluster (line 398) | AsFbxMeshCreateCluster(AsFbxContext* pContext, FbxNode* pBoneNode) function AsFbxMeshAddCluster (line 416) | AsFbxMeshAddCluster(FbxArray* pArray, FbxCluster* pCluster) function AsFbxMeshCreateMesh (line 425) | AsFbxMeshCreateMesh(AsFbxContext* pContext, FbxNode* pFrameNode) function AsFbxMeshInitControlPoints (line 443) | AsFbxMeshInitControlPoints(FbxMesh* pMesh, int32_t vertexCount) function AsFbxMeshCreateElementNormal (line 453) | AsFbxMeshCreateElementNormal(FbxMesh* pMesh) function AsFbxMeshCreateDiffuseUV (line 465) | AsFbxMeshCreateDiffuseUV(FbxMesh* pMesh, int32_t uv) function AsFbxMeshCreateNormalMapUV (line 477) | AsFbxMeshCreateNormalMapUV(FbxMesh* pMesh, int32_t uv) function AsFbxMeshCreateElementTangent (line 489) | AsFbxMeshCreateElementTangent(FbxMesh* pMesh) function AsFbxMeshCreateElementVertexColor (line 501) | AsFbxMeshCreateElementVertexColor(FbxMesh* pMesh) function AsFbxMeshCreateElementMaterial (line 513) | AsFbxMeshCreateElementMaterial(FbxMesh* pMesh) function AsFbxCreateMaterial (line 525) | AsFbxCreateMaterial(AsFbxContext* pContext, const char* pMatName, function AsFbxAddMaterialToFrame (line 562) | AsFbxAddMaterialToFrame(FbxNode* pFrameNode, FbxSurfacePhong* pMaterial) function AsFbxSetFrameShadingModeToTextureShading (line 572) | AsFbxSetFrameShadingModeToTextureShading(FbxNode* pFrameNode) function AsFbxMeshSetControlPoint (line 582) | AsFbxMeshSetControlPoint(FbxMesh* pMesh, int32_t index, float x, float y... function AsFbxMeshAddPolygon (line 594) | AsFbxMeshAddPolygon(FbxMesh* pMesh, int32_t materialIndex, int32_t index... function AsFbxMeshElementNormalAdd (line 608) | AsFbxMeshElementNormalAdd(FbxMesh* pMesh, int32_t elementIndex, float x,... function AsFbxMeshElementUVAdd (line 621) | AsFbxMeshElementUVAdd(FbxMesh* pMesh, int32_t elementIndex, float u, flo... function AsFbxMeshElementTangentAdd (line 634) | AsFbxMeshElementTangentAdd(FbxMesh* pMesh, int32_t elementIndex, float x... function AsFbxMeshElementVertexColorAdd (line 647) | AsFbxMeshElementVertexColorAdd(FbxMesh* pMesh, int32_t elementIndex, flo... function AsFbxMeshSetBoneWeight (line 660) | AsFbxMeshSetBoneWeight(FbxArray* pClusterArray, int32_t bon... function AsFbxMeshCreateSkinContext (line 675) | AsFbxMeshCreateSkinContext(AsFbxContext* pContext, FbxNode* pFrameNode) function AsFbxMeshDisposeSkinContext (line 680) | AsFbxMeshDisposeSkinContext(AsFbxSkinContext** ppSkinContext) function FbxClusterArray_HasItemAt (line 691) | FbxClusterArray_HasItemAt(FbxArray* pClusterArray, int32_t ... function IndexFrom4x4 (line 703) | static inline int32_t IndexFrom4x4(int32_t m, int32_t n) function AsFbxMeshSkinAddCluster (line 708) | AsFbxMeshSkinAddCluster(AsFbxSkinContext* pSkinContext, FbxArray meshFrames) method ExportScene (line 130) | private void ExportScene() method SetJointsFromImportedMeshes (line 135) | private void SetJointsFromImportedMeshes() method SetJointsNode (line 162) | private void SetJointsNode(ImportedFrame rootFrame, HashSet bo... method PrepareMaterials (line 167) | private void PrepareMaterials() method ExportMeshFrames (line 172) | private void ExportMeshFrames(ImportedFrame rootFrame, List SearchHierarchy() method SearchHierarchy (line 194) | private static void SearchHierarchy(ImportedFrame rootFrame, List framePaths) method ExportScene (line 90) | internal void ExportScene() method ExportFrame (line 97) | internal void ExportFrame(List meshList, List b... method PrepareMaterials (line 171) | internal void PrepareMaterials(int materialCount, int textureCount) method ExportMeshFromFrame (line 176) | internal void ExportMeshFromFrame(ImportedFrame rootFrame, ImportedFra... method ExportTexture (line 184) | private IntPtr ExportTexture(ImportedTexture texture) method ExportMesh (line 210) | private void ExportMesh(ImportedFrame rootFrame, List GetSelectedAssets() method FilterAssetList (line 1513) | private void FilterAssetList() method ExportAssets (line 1545) | private void ExportAssets(ExportFilter type, ExportType exportType) method ExportAssetsList (line 1577) | private void ExportAssetsList(ExportFilter type) method FMODinit (line 1612) | private void FMODinit() method FMODreset (line 1637) | private void FMODreset() method FMODplayButton_Click (line 1653) | private void FMODplayButton_Click(object sender, EventArgs e) method FMODpauseButton_Click (line 1695) | private void FMODpauseButton_Click(object sender, EventArgs e) method FMODstopButton_Click (line 1728) | private void FMODstopButton_Click(object sender, EventArgs e) method FMODloopButton_CheckedChanged (line 1753) | private void FMODloopButton_CheckedChanged(object sender, EventArgs e) method FMODvolumeBar_ValueChanged (line 1787) | private void FMODvolumeBar_ValueChanged(object sender, EventArgs e) method FMODprogressBar_Scroll (line 1795) | private void FMODprogressBar_Scroll(object sender, EventArgs e) method FMODprogressBar_MouseDown (line 1804) | private void FMODprogressBar_MouseDown(object sender, MouseEventArgs e) method FMODprogressBar_MouseUp (line 1809) | private void FMODprogressBar_MouseUp(object sender, MouseEventArgs e) method timer_Tick (line 1832) | private void timer_Tick(object sender, EventArgs e) method ERRCHECK (line 1869) | private bool ERRCHECK(FMOD.RESULT result) method InitOpenTK (line 1882) | private void InitOpenTK() method LoadShader (line 1909) | private static void LoadShader(string filename, ShaderType type, int p... method CreateVBO (line 1919) | private static void CreateVBO(out int vboAddress, Vector3[] data, int ... method CreateVBO (line 1931) | private static void CreateVBO(out int vboAddress, Vector4[] data, int ... method CreateVBO (line 1943) | private static void CreateVBO(out int vboAddress, Matrix4 data, int ad... method CreateEBO (line 1949) | private static void CreateEBO(out int address, int[] data) method CreateVAO (line 1959) | private void CreateVAO() method ChangeGLSize (line 1983) | private void ChangeGLSize(Size size) method glControl1_Load (line 1999) | private void glControl1_Load(object sender, EventArgs e) method glControl1_Paint (line 2005) | private void glControl1_Paint(object sender, PaintEventArgs e) method tabControl2_SelectedIndexChanged (line 2039) | private void tabControl2_SelectedIndexChanged(object sender, EventArgs e) method toolStripMenuItem15_Click (line 2047) | private void toolStripMenuItem15_Click(object sender, EventArgs e) method glControl1_MouseWheel (line 2052) | private void glControl1_MouseWheel(object sender, MouseEventArgs e) method glControl1_MouseDown (line 2061) | private void glControl1_MouseDown(object sender, MouseEventArgs e) method glControl1_MouseMove (line 2075) | private void glControl1_MouseMove(object sender, MouseEventArgs e) method glControl1_MouseUp (line 2100) | private void glControl1_MouseUp(object sender, MouseEventArgs e) FILE: AssetStudioGUI/Components/AssetItem.cs class AssetItem (line 6) | internal class AssetItem : ListViewItem method AssetItem (line 19) | public AssetItem(Object asset) method SetSubItems (line 29) | public void SetSubItems() FILE: AssetStudioGUI/Components/GOHierarchy.cs class GOHierarchy (line 9) | internal class GOHierarchy : TreeView method WndProc (line 11) | protected override void WndProc(ref Message m) FILE: AssetStudioGUI/Components/GameObjectTreeNode.cs class GameObjectTreeNode (line 6) | internal class GameObjectTreeNode : TreeNode method GameObjectTreeNode (line 10) | public GameObjectTreeNode(GameObject gameObject) FILE: AssetStudioGUI/Components/OpenFolderDialog.cs class OpenFolderDialog (line 8) | internal class OpenFolderDialog method ShowDialog (line 15) | internal DialogResult ShowDialog(IWin32Window owner = null) method ShowVistaDialog (line 26) | private DialogResult ShowVistaDialog(IWin32Window owner) method ShowFolderBrowserDialog (line 77) | private DialogResult ShowFolderBrowserDialog(IWin32Window owner) class NativeMethods (line 103) | internal static class NativeMethods class FileOpenDialogRCW (line 123) | [ComImport, ClassInterface(ClassInterfaceType.None), TypeLibType(TypeL... type IFileDialog (line 127) | [ComImport(), Guid("42F85136-DB7E-439C-85F1-E4075D135FC8"), InterfaceT... method Show (line 130) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFileTypes (line 135) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFileTypeIndex (line 138) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetFileTypeIndex (line 141) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method Advise (line 144) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method Unadvise (line 147) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetOptions (line 150) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetOptions (line 153) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetDefaultFolder (line 156) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFolder (line 159) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetFolder (line 162) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetCurrentSelection (line 165) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFileName (line 168) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetFileName (line 171) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetTitle (line 174) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetOkButtonLabel (line 177) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFileNameLabel (line 180) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetResult (line 183) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method AddPlace (line 186) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetDefaultExtension (line 189) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method Close (line 192) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetClientGuid (line 195) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method ClearClientData (line 198) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SetFilter (line 201) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... type IShellItem (line 206) | [ComImport, Guid("43826D1E-E718-42EE-BC55-A1E261C37BFE"), InterfaceTyp... method BindToHandler (line 209) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetParent (line 212) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetDisplayName (line 215) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method GetAttributes (line 218) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method Compare (line 221) | [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodC... method SHCreateItemFromParsingName (line 228) | [DllImport("shell32.dll", CharSet = CharSet.Unicode, SetLastError = tr... FILE: AssetStudioGUI/Components/TypeTreeItem.cs class TypeTreeItem (line 8) | internal class TypeTreeItem : ListViewItem method TypeTreeItem (line 12) | public TypeTreeItem(int typeID, TypeTree m_Type) method ToString (line 19) | public override string ToString() FILE: AssetStudioGUI/DirectBitmap.cs class DirectBitmap (line 8) | public sealed class DirectBitmap : IDisposable method DirectBitmap (line 10) | public DirectBitmap(byte[] buff, int width, int height) method Dispose (line 19) | private void Dispose(bool disposing) method Dispose (line 29) | public void Dispose() FILE: AssetStudioGUI/ExportOptions.Designer.cs class ExportOptions (line 3) | partial class ExportOptions method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: AssetStudioGUI/ExportOptions.cs class ExportOptions (line 7) | public partial class ExportOptions : Form method ExportOptions (line 9) | public ExportOptions() method OKbutton_Click (line 41) | private void OKbutton_Click(object sender, EventArgs e) method Cancel_Click (line 73) | private void Cancel_Click(object sender, EventArgs e) FILE: AssetStudioGUI/Exporter.cs class Exporter (line 10) | internal static class Exporter method ExportTexture2D (line 12) | public static bool ExportTexture2D(AssetItem item, string exportPath) method ExportAudioClip (line 41) | public static bool ExportAudioClip(AssetItem item, string exportPath) method ExportShader (line 66) | public static bool ExportShader(AssetItem item, string exportPath) method ExportTextAsset (line 76) | public static bool ExportTextAsset(AssetItem item, string exportPath) method ExportMonoBehaviour (line 93) | public static bool ExportMonoBehaviour(AssetItem item, string exportPath) method ExportFont (line 109) | public static bool ExportFont(AssetItem item, string exportPath) method ExportMesh (line 127) | public static bool ExportMesh(AssetItem item, string exportPath) method ExportVideoClip (line 209) | public static bool ExportVideoClip(AssetItem item, string exportPath) method ExportMovieTexture (line 222) | public static bool ExportMovieTexture(AssetItem item, string exportPath) method ExportSprite (line 231) | public static bool ExportSprite(AssetItem item, string exportPath) method ExportRawFile (line 251) | public static bool ExportRawFile(AssetItem item, string exportPath) method TryExportFile (line 259) | private static bool TryExportFile(string dir, AssetItem item, string e... method ExportAnimator (line 277) | public static bool ExportAnimator(AssetItem item, string exportPath, L... method ExportGameObject (line 292) | public static void ExportGameObject(GameObject gameObject, string expo... method ExportGameObjectMerge (line 301) | public static void ExportGameObjectMerge(List gameObject, ... method ExportFbx (line 310) | private static void ExportFbx(IImported convert, string exportPath) method ExportDumpFile (line 328) | public static bool ExportDumpFile(AssetItem item, string exportPath) method ExportConvertFile (line 346) | public static bool ExportConvertFile(AssetItem item, string exportPath) method FixFileName (line 379) | public static string FixFileName(string str) FILE: AssetStudioGUI/GUILogger.cs class GUILogger (line 7) | class GUILogger : ILogger method GUILogger (line 12) | public GUILogger(Action action) method Log (line 17) | public void Log(LoggerEvent loggerEvent, string message) FILE: AssetStudioGUI/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: AssetStudioGUI/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: AssetStudioGUI/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: AssetStudioGUI/Studio.cs type ExportType (line 16) | internal enum ExportType type ExportFilter (line 23) | internal enum ExportFilter type ExportListType (line 30) | internal enum ExportListType class Studio (line 35) | internal static class Studio method ExtractFolder (line 43) | public static int ExtractFolder(string path, string savePath) method ExtractFile (line 59) | public static int ExtractFile(string[] fileNames, string savePath) method ExtractFile (line 72) | public static int ExtractFile(string fileName, string savePath) method ExtractBundleFile (line 85) | private static int ExtractBundleFile(FileReader reader, string savePath) method ExtractWebDataFile (line 98) | private static int ExtractWebDataFile(FileReader reader, string savePath) method ExtractStreamFile (line 111) | private static int ExtractStreamFile(string extractPath, StreamFile[] ... method BuildAssetData (line 135) | public static (string, List) BuildAssetData() method BuildClassStructure (line 338) | public static Dictionary> ... method ExportAssets (line 374) | public static void ExportAssets(string savePath, List toExp... method ExportAssetsList (line 466) | public static void ExportAssetsList(string savePath, List t... method ExportSplitObjects (line 511) | public static void ExportSplitObjects(string savePath, TreeNodeCollect... method CollectNode (line 572) | private static void CollectNode(GameObjectTreeNode node, List operands) FILE: AssetStudioUtility/CSspv/Module.cs class Module (line 9) | public class Module type FloatUIntUnion (line 11) | [StructLayout(LayoutKind.Explicit)] type DoubleULongUnion (line 20) | [StructLayout(LayoutKind.Explicit)] method Module (line 29) | public Module(ModuleHeader header, IReadOnlyList in... method IsDebugInstruction (line 37) | public static bool IsDebugInstruction(ParsedInstruction instruction) method Read (line 42) | private static void Read(IReadOnlyList instructions... method ReadFrom (line 121) | public static Module ReadFrom(Stream stream) method ProcessTypeInstruction (line 179) | private static void ProcessTypeInstruction(ParsedInstruction i, IReadO... method ConvertConstant (line 348) | private static object ConvertConstant(ScalarType type, IReadOnlyList words, int index, ou... class Literal (line 20) | public class Literal : OperandType class LiteralNumber (line 24) | public class LiteralNumber : Literal class LiteralInteger (line 29) | public class LiteralInteger : LiteralNumber method ReadValue (line 31) | public override bool ReadValue(IReadOnlyList words, int index, o... class LiteralString (line 39) | public class LiteralString : Literal method ReadValue (line 41) | public override bool ReadValue(IReadOnlyList words, int index, o... class LiteralContextDependentNumber (line 97) | public class LiteralContextDependentNumber : Literal class LiteralExtInstInteger (line 102) | public class LiteralExtInstInteger : Literal method ReadValue (line 104) | public override bool ReadValue(IReadOnlyList words, int index, o... class LiteralSpecConstantOpInteger (line 112) | public class LiteralSpecConstantOpInteger : Literal method ReadValue (line 114) | public override bool ReadValue(IReadOnlyList words, int index, o... class Parameter (line 129) | public class Parameter class ParameterFactory (line 134) | public class ParameterFactory method CreateParameter (line 136) | public virtual Parameter CreateParameter(object value) class EnumType (line 142) | public class EnumType : EnumType method ReadValue (line 151) | public override bool ReadValue(IReadOnlyList words, int index, o... class EnumType (line 147) | public class EnumType : OperandType method ReadValue (line 151) | public override bool ReadValue(IReadOnlyList words, int index, o... class IdScope (line 213) | public class IdScope : OperandType method ReadValue (line 215) | public override bool ReadValue(IReadOnlyList words, int index, o... class IdMemorySemantics (line 223) | public class IdMemorySemantics : OperandType method ReadValue (line 225) | public override bool ReadValue(IReadOnlyList words, int index, o... class IdType (line 233) | public class IdType : OperandType method ReadValue (line 235) | public override bool ReadValue(IReadOnlyList words, int index, o... class IdResult (line 243) | public class IdResult : IdType method ReadValue (line 245) | public override bool ReadValue(IReadOnlyList words, int index, o... class IdResultType (line 253) | public class IdResultType : IdType class IdRef (line 257) | public class IdRef : IdType method ReadValue (line 259) | public override bool ReadValue(IReadOnlyList words, int index, o... class PairIdRefIdRef (line 267) | public class PairIdRefIdRef : OperandType method ReadValue (line 269) | public override bool ReadValue(IReadOnlyList words, int index, o... class PairIdRefLiteralInteger (line 279) | public class PairIdRefLiteralInteger : OperandType method ReadValue (line 281) | public override bool ReadValue(IReadOnlyList words, int index, o... class PairLiteralIntegerIdRef (line 291) | public class PairLiteralIntegerIdRef : OperandType method ReadValue (line 293) | public override bool ReadValue(IReadOnlyList words, int index, o... FILE: AssetStudioUtility/CSspv/ParsedInstruction.cs class ParsedOperand (line 7) | public class ParsedOperand method ParsedOperand (line 9) | public ParsedOperand(IReadOnlyList words, int index, int count, ... method GetSingleEnumValue (line 22) | public T GetSingleEnumValue() method GetId (line 39) | public uint GetId() method GetBitEnumValue (line 44) | public T GetBitEnumValue() class VaryingOperandValue (line 63) | public class VaryingOperandValue method VaryingOperandValue (line 65) | public VaryingOperandValue(IReadOnlyList values) method ToString (line 70) | public override string ToString() method ToString (line 77) | public StringBuilder ToString(StringBuilder sb) type IEnumOperandValue (line 100) | public interface IEnumOperandValue type IBitEnumOperandValue (line 105) | public interface IBitEnumOperandValue : IEnumOperandValue type IValueEnumOperandValue (line 110) | public interface IValueEnumOperandValue : IEnumOperandValue class ValueEnumOperandValue (line 116) | public class ValueEnumOperandValue : IValueEnumOperandValue method ValueEnumOperandValue (line 119) | public ValueEnumOperandValue(T key, IReadOnlyList value) class BitEnumOperandValue (line 130) | public class BitEnumOperandValue : IBitEnumOperandValue method BitEnumOperandValue (line 133) | public BitEnumOperandValue(Dictionary> val... class ObjectReference (line 142) | public class ObjectReference method ObjectReference (line 144) | public ObjectReference(uint id) method Resolve (line 149) | public void Resolve(IReadOnlyDictionary objects) method ToString (line 154) | public override string ToString() method ToString (line 159) | public StringBuilder ToString(StringBuilder sb) class ParsedInstruction (line 168) | public class ParsedInstruction method ParsedInstruction (line 170) | public ParsedInstruction(int opCode, IReadOnlyList words) method ParseOperands (line 177) | private void ParseOperands() method ResolveResultType (line 223) | public void ResolveResultType(IReadOnlyDictionary() class OpSourceContinued (line 1246) | public class OpSourceContinued : Instruction method OpSourceContinued (line 1248) | public OpSourceContinued() : base("OpSourceContinued", new List() class OpSourceExtension (line 1260) | public class OpSourceExtension : Instruction method OpSourceExtension (line 1262) | public OpSourceExtension() : base("OpSourceExtension", new List() class OpMemberName (line 1274) | public class OpMemberName : Instruction method OpMemberName (line 1276) | public OpMemberName() : base("OpMemberName", new List() class OpString (line 1281) | public class OpString : Instruction method OpString (line 1283) | public OpString() : base("OpString", new List() class OpLine (line 1288) | public class OpLine : Instruction method OpLine (line 1290) | public OpLine() : base("OpLine", new List() class OpExtension (line 1295) | public class OpExtension : Instruction method OpExtension (line 1297) | public OpExtension() : base("OpExtension", new List() class OpExtInstImport (line 1302) | public class OpExtInstImport : Instruction method OpExtInstImport (line 1304) | public OpExtInstImport() : base("OpExtInstImport", new List() class OpExtInst (line 1309) | public class OpExtInst : Instruction method OpExtInst (line 1311) | public OpExtInst() : base("OpExtInst", new List() class OpMemoryModel (line 1316) | public class OpMemoryModel : Instruction method OpMemoryModel (line 1318) | public OpMemoryModel() : base("OpMemoryModel", new List() class OpEntryPoint (line 1323) | public class OpEntryPoint : Instruction method OpEntryPoint (line 1325) | public OpEntryPoint() : base("OpEntryPoint", new List() class OpExecutionMode (line 1330) | public class OpExecutionMode : Instruction method OpExecutionMode (line 1332) | public OpExecutionMode() : base("OpExecutionMode", new List() class OpCapability (line 1337) | public class OpCapability : Instruction method OpCapability (line 1339) | public OpCapability() : base("OpCapability", new List() class OpTypeVoid (line 1344) | public class OpTypeVoid : Instruction method OpTypeVoid (line 1346) | public OpTypeVoid() : base("OpTypeVoid", new List() class OpTypeBool (line 1351) | public class OpTypeBool : Instruction method OpTypeBool (line 1353) | public OpTypeBool() : base("OpTypeBool", new List() class OpTypeInt (line 1358) | public class OpTypeInt : Instruction method OpTypeInt (line 1360) | public OpTypeInt() : base("OpTypeInt", new List() class OpTypeFloat (line 1365) | public class OpTypeFloat : Instruction method OpTypeFloat (line 1367) | public OpTypeFloat() : base("OpTypeFloat", new List() class OpTypeVector (line 1372) | public class OpTypeVector : Instruction method OpTypeVector (line 1374) | public OpTypeVector() : base("OpTypeVector", new List() class OpTypeMatrix (line 1379) | public class OpTypeMatrix : Instruction method OpTypeMatrix (line 1381) | public OpTypeMatrix() : base("OpTypeMatrix", new List() class OpTypeImage (line 1386) | public class OpTypeImage : Instruction method OpTypeImage (line 1388) | public OpTypeImage() : base("OpTypeImage", new List() class OpTypeSampler (line 1393) | public class OpTypeSampler : Instruction method OpTypeSampler (line 1395) | public OpTypeSampler() : base("OpTypeSampler", new List() class OpTypeSampledImage (line 1400) | public class OpTypeSampledImage : Instruction method OpTypeSampledImage (line 1402) | public OpTypeSampledImage() : base("OpTypeSampledImage", new List() class OpTypeRuntimeArray (line 1414) | public class OpTypeRuntimeArray : Instruction method OpTypeRuntimeArray (line 1416) | public OpTypeRuntimeArray() : base("OpTypeRuntimeArray", new List() class OpTypeOpaque (line 1428) | public class OpTypeOpaque : Instruction method OpTypeOpaque (line 1430) | public OpTypeOpaque() : base("OpTypeOpaque", new List() class OpTypePointer (line 1435) | public class OpTypePointer : Instruction method OpTypePointer (line 1437) | public OpTypePointer() : base("OpTypePointer", new List() class OpTypeFunction (line 1442) | public class OpTypeFunction : Instruction method OpTypeFunction (line 1444) | public OpTypeFunction() : base("OpTypeFunction", new List() class OpTypeEvent (line 1449) | public class OpTypeEvent : Instruction method OpTypeEvent (line 1451) | public OpTypeEvent() : base("OpTypeEvent", new List() class OpTypeDeviceEvent (line 1456) | public class OpTypeDeviceEvent : Instruction method OpTypeDeviceEvent (line 1458) | public OpTypeDeviceEvent() : base("OpTypeDeviceEvent", new List() class OpTypeQueue (line 1470) | public class OpTypeQueue : Instruction method OpTypeQueue (line 1472) | public OpTypeQueue() : base("OpTypeQueue", new List() class OpTypePipe (line 1477) | public class OpTypePipe : Instruction method OpTypePipe (line 1479) | public OpTypePipe() : base("OpTypePipe", new List() class OpTypeForwardPointer (line 1484) | public class OpTypeForwardPointer : Instruction method OpTypeForwardPointer (line 1486) | public OpTypeForwardPointer() : base("OpTypeForwardPointer", new List<... class OpConstantTrue (line 1491) | public class OpConstantTrue : Instruction method OpConstantTrue (line 1493) | public OpConstantTrue() : base("OpConstantTrue", new List() class OpConstantFalse (line 1498) | public class OpConstantFalse : Instruction method OpConstantFalse (line 1500) | public OpConstantFalse() : base("OpConstantFalse", new List() class OpConstant (line 1505) | public class OpConstant : Instruction method OpConstant (line 1507) | public OpConstant() : base("OpConstant", new List() class OpConstantComposite (line 1512) | public class OpConstantComposite : Instruction method OpConstantComposite (line 1514) | public OpConstantComposite() : base("OpConstantComposite", new List() class OpSpecConstantTrue (line 1533) | public class OpSpecConstantTrue : Instruction method OpSpecConstantTrue (line 1535) | public OpSpecConstantTrue() : base("OpSpecConstantTrue", new List() class OpSpecConstantComposite (line 1554) | public class OpSpecConstantComposite : Instruction method OpSpecConstantComposite (line 1556) | public OpSpecConstantComposite() : base("OpSpecConstantComposite", new... class OpSpecConstantOp (line 1561) | public class OpSpecConstantOp : Instruction method OpSpecConstantOp (line 1563) | public OpSpecConstantOp() : base("OpSpecConstantOp", new List() class OpFunction (line 1568) | public class OpFunction : Instruction method OpFunction (line 1570) | public OpFunction() : base("OpFunction", new List() class OpFunctionParameter (line 1575) | public class OpFunctionParameter : Instruction method OpFunctionParameter (line 1577) | public OpFunctionParameter() : base("OpFunctionParameter", new List() class OpVariable (line 1595) | public class OpVariable : Instruction method OpVariable (line 1597) | public OpVariable() : base("OpVariable", new List() class OpImageTexelPointer (line 1602) | public class OpImageTexelPointer : Instruction method OpImageTexelPointer (line 1604) | public OpImageTexelPointer() : base("OpImageTexelPointer", new List() class OpStore (line 1616) | public class OpStore : Instruction method OpStore (line 1618) | public OpStore() : base("OpStore", new List() class OpCopyMemory (line 1623) | public class OpCopyMemory : Instruction method OpCopyMemory (line 1625) | public OpCopyMemory() : base("OpCopyMemory", new List() class OpCopyMemorySized (line 1630) | public class OpCopyMemorySized : Instruction method OpCopyMemorySized (line 1632) | public OpCopyMemorySized() : base("OpCopyMemorySized", new List() class OpInBoundsAccessChain (line 1644) | public class OpInBoundsAccessChain : Instruction method OpInBoundsAccessChain (line 1646) | public OpInBoundsAccessChain() : base("OpInBoundsAccessChain", new Lis... class OpPtrAccessChain (line 1651) | public class OpPtrAccessChain : Instruction method OpPtrAccessChain (line 1653) | public OpPtrAccessChain() : base("OpPtrAccessChain", new List() class OpArrayLength (line 1658) | public class OpArrayLength : Instruction method OpArrayLength (line 1660) | public OpArrayLength() : base("OpArrayLength", new List() class OpGenericPtrMemSemantics (line 1665) | public class OpGenericPtrMemSemantics : Instruction method OpGenericPtrMemSemantics (line 1667) | public OpGenericPtrMemSemantics() : base("OpGenericPtrMemSemantics", n... class OpInBoundsPtrAccessChain (line 1672) | public class OpInBoundsPtrAccessChain : Instruction method OpInBoundsPtrAccessChain (line 1674) | public OpInBoundsPtrAccessChain() : base("OpInBoundsPtrAccessChain", n... class OpDecorate (line 1679) | public class OpDecorate : Instruction method OpDecorate (line 1681) | public OpDecorate() : base("OpDecorate", new List() class OpMemberDecorate (line 1686) | public class OpMemberDecorate : Instruction method OpMemberDecorate (line 1688) | public OpMemberDecorate() : base("OpMemberDecorate", new List() class OpDecorationGroup (line 1693) | public class OpDecorationGroup : Instruction method OpDecorationGroup (line 1695) | public OpDecorationGroup() : base("OpDecorationGroup", new List() class OpGroupMemberDecorate (line 1707) | public class OpGroupMemberDecorate : Instruction method OpGroupMemberDecorate (line 1709) | public OpGroupMemberDecorate() : base("OpGroupMemberDecorate", new Lis... class OpVectorExtractDynamic (line 1714) | public class OpVectorExtractDynamic : Instruction method OpVectorExtractDynamic (line 1716) | public OpVectorExtractDynamic() : base("OpVectorExtractDynamic", new L... class OpVectorInsertDynamic (line 1721) | public class OpVectorInsertDynamic : Instruction method OpVectorInsertDynamic (line 1723) | public OpVectorInsertDynamic() : base("OpVectorInsertDynamic", new Lis... class OpVectorShuffle (line 1728) | public class OpVectorShuffle : Instruction method OpVectorShuffle (line 1730) | public OpVectorShuffle() : base("OpVectorShuffle", new List() class OpCompositeConstruct (line 1735) | public class OpCompositeConstruct : Instruction method OpCompositeConstruct (line 1737) | public OpCompositeConstruct() : base("OpCompositeConstruct", new List<... class OpCompositeExtract (line 1742) | public class OpCompositeExtract : Instruction method OpCompositeExtract (line 1744) | public OpCompositeExtract() : base("OpCompositeExtract", new List() class OpTranspose (line 1763) | public class OpTranspose : Instruction method OpTranspose (line 1765) | public OpTranspose() : base("OpTranspose", new List() class OpSampledImage (line 1770) | public class OpSampledImage : Instruction method OpSampledImage (line 1772) | public OpSampledImage() : base("OpSampledImage", new List() class OpImageSampleImplicitLod (line 1777) | public class OpImageSampleImplicitLod : Instruction method OpImageSampleImplicitLod (line 1779) | public OpImageSampleImplicitLod() : base("OpImageSampleImplicitLod", n... class OpImageSampleExplicitLod (line 1784) | public class OpImageSampleExplicitLod : Instruction method OpImageSampleExplicitLod (line 1786) | public OpImageSampleExplicitLod() : base("OpImageSampleExplicitLod", n... class OpImageSampleDrefImplicitLod (line 1791) | public class OpImageSampleDrefImplicitLod : Instruction method OpImageSampleDrefImplicitLod (line 1793) | public OpImageSampleDrefImplicitLod() : base("OpImageSampleDrefImplici... class OpImageSampleDrefExplicitLod (line 1798) | public class OpImageSampleDrefExplicitLod : Instruction method OpImageSampleDrefExplicitLod (line 1800) | public OpImageSampleDrefExplicitLod() : base("OpImageSampleDrefExplici... class OpImageSampleProjImplicitLod (line 1805) | public class OpImageSampleProjImplicitLod : Instruction method OpImageSampleProjImplicitLod (line 1807) | public OpImageSampleProjImplicitLod() : base("OpImageSampleProjImplici... class OpImageSampleProjExplicitLod (line 1812) | public class OpImageSampleProjExplicitLod : Instruction method OpImageSampleProjExplicitLod (line 1814) | public OpImageSampleProjExplicitLod() : base("OpImageSampleProjExplici... class OpImageSampleProjDrefImplicitLod (line 1819) | public class OpImageSampleProjDrefImplicitLod : Instruction method OpImageSampleProjDrefImplicitLod (line 1821) | public OpImageSampleProjDrefImplicitLod() : base("OpImageSampleProjDre... class OpImageSampleProjDrefExplicitLod (line 1826) | public class OpImageSampleProjDrefExplicitLod : Instruction method OpImageSampleProjDrefExplicitLod (line 1828) | public OpImageSampleProjDrefExplicitLod() : base("OpImageSampleProjDre... class OpImageFetch (line 1833) | public class OpImageFetch : Instruction method OpImageFetch (line 1835) | public OpImageFetch() : base("OpImageFetch", new List() class OpImageGather (line 1840) | public class OpImageGather : Instruction method OpImageGather (line 1842) | public OpImageGather() : base("OpImageGather", new List() class OpImageDrefGather (line 1847) | public class OpImageDrefGather : Instruction method OpImageDrefGather (line 1849) | public OpImageDrefGather() : base("OpImageDrefGather", new List() class OpImageWrite (line 1861) | public class OpImageWrite : Instruction method OpImageWrite (line 1863) | public OpImageWrite() : base("OpImageWrite", new List() class OpImage (line 1868) | public class OpImage : Instruction method OpImage (line 1870) | public OpImage() : base("OpImage", new List() class OpImageQueryFormat (line 1875) | public class OpImageQueryFormat : Instruction method OpImageQueryFormat (line 1877) | public OpImageQueryFormat() : base("OpImageQueryFormat", new List() class OpImageQueryLod (line 1903) | public class OpImageQueryLod : Instruction method OpImageQueryLod (line 1905) | public OpImageQueryLod() : base("OpImageQueryLod", new List() class OpImageQueryLevels (line 1910) | public class OpImageQueryLevels : Instruction method OpImageQueryLevels (line 1912) | public OpImageQueryLevels() : base("OpImageQueryLevels", new List() class OpConvertFToS (line 1931) | public class OpConvertFToS : Instruction method OpConvertFToS (line 1933) | public OpConvertFToS() : base("OpConvertFToS", new List() class OpConvertSToF (line 1938) | public class OpConvertSToF : Instruction method OpConvertSToF (line 1940) | public OpConvertSToF() : base("OpConvertSToF", new List() class OpConvertUToF (line 1945) | public class OpConvertUToF : Instruction method OpConvertUToF (line 1947) | public OpConvertUToF() : base("OpConvertUToF", new List() class OpUConvert (line 1952) | public class OpUConvert : Instruction method OpUConvert (line 1954) | public OpUConvert() : base("OpUConvert", new List() class OpSConvert (line 1959) | public class OpSConvert : Instruction method OpSConvert (line 1961) | public OpSConvert() : base("OpSConvert", new List() class OpFConvert (line 1966) | public class OpFConvert : Instruction method OpFConvert (line 1968) | public OpFConvert() : base("OpFConvert", new List() class OpQuantizeToF16 (line 1973) | public class OpQuantizeToF16 : Instruction method OpQuantizeToF16 (line 1975) | public OpQuantizeToF16() : base("OpQuantizeToF16", new List() class OpConvertPtrToU (line 1980) | public class OpConvertPtrToU : Instruction method OpConvertPtrToU (line 1982) | public OpConvertPtrToU() : base("OpConvertPtrToU", new List() class OpSatConvertSToU (line 1987) | public class OpSatConvertSToU : Instruction method OpSatConvertSToU (line 1989) | public OpSatConvertSToU() : base("OpSatConvertSToU", new List() class OpSatConvertUToS (line 1994) | public class OpSatConvertUToS : Instruction method OpSatConvertUToS (line 1996) | public OpSatConvertUToS() : base("OpSatConvertUToS", new List() class OpConvertUToPtr (line 2001) | public class OpConvertUToPtr : Instruction method OpConvertUToPtr (line 2003) | public OpConvertUToPtr() : base("OpConvertUToPtr", new List() class OpPtrCastToGeneric (line 2008) | public class OpPtrCastToGeneric : Instruction method OpPtrCastToGeneric (line 2010) | public OpPtrCastToGeneric() : base("OpPtrCastToGeneric", new List() class OpSNegate (line 2036) | public class OpSNegate : Instruction method OpSNegate (line 2038) | public OpSNegate() : base("OpSNegate", new List() class OpFNegate (line 2043) | public class OpFNegate : Instruction method OpFNegate (line 2045) | public OpFNegate() : base("OpFNegate", new List() class OpIAdd (line 2050) | public class OpIAdd : Instruction method OpIAdd (line 2052) | public OpIAdd() : base("OpIAdd", new List() class OpFAdd (line 2057) | public class OpFAdd : Instruction method OpFAdd (line 2059) | public OpFAdd() : base("OpFAdd", new List() class OpISub (line 2064) | public class OpISub : Instruction method OpISub (line 2066) | public OpISub() : base("OpISub", new List() class OpFSub (line 2071) | public class OpFSub : Instruction method OpFSub (line 2073) | public OpFSub() : base("OpFSub", new List() class OpIMul (line 2078) | public class OpIMul : Instruction method OpIMul (line 2080) | public OpIMul() : base("OpIMul", new List() class OpFMul (line 2085) | public class OpFMul : Instruction method OpFMul (line 2087) | public OpFMul() : base("OpFMul", new List() class OpUDiv (line 2092) | public class OpUDiv : Instruction method OpUDiv (line 2094) | public OpUDiv() : base("OpUDiv", new List() class OpSDiv (line 2099) | public class OpSDiv : Instruction method OpSDiv (line 2101) | public OpSDiv() : base("OpSDiv", new List() class OpFDiv (line 2106) | public class OpFDiv : Instruction method OpFDiv (line 2108) | public OpFDiv() : base("OpFDiv", new List() class OpUMod (line 2113) | public class OpUMod : Instruction method OpUMod (line 2115) | public OpUMod() : base("OpUMod", new List() class OpSRem (line 2120) | public class OpSRem : Instruction method OpSRem (line 2122) | public OpSRem() : base("OpSRem", new List() class OpSMod (line 2127) | public class OpSMod : Instruction method OpSMod (line 2129) | public OpSMod() : base("OpSMod", new List() class OpFRem (line 2134) | public class OpFRem : Instruction method OpFRem (line 2136) | public OpFRem() : base("OpFRem", new List() class OpFMod (line 2141) | public class OpFMod : Instruction method OpFMod (line 2143) | public OpFMod() : base("OpFMod", new List() class OpVectorTimesScalar (line 2148) | public class OpVectorTimesScalar : Instruction method OpVectorTimesScalar (line 2150) | public OpVectorTimesScalar() : base("OpVectorTimesScalar", new List() class OpDot (line 2190) | public class OpDot : Instruction method OpDot (line 2192) | public OpDot() : base("OpDot", new List() class OpIAddCarry (line 2197) | public class OpIAddCarry : Instruction method OpIAddCarry (line 2199) | public OpIAddCarry() : base("OpIAddCarry", new List() class OpISubBorrow (line 2204) | public class OpISubBorrow : Instruction method OpISubBorrow (line 2206) | public OpISubBorrow() : base("OpISubBorrow", new List() class OpUMulExtended (line 2211) | public class OpUMulExtended : Instruction method OpUMulExtended (line 2213) | public OpUMulExtended() : base("OpUMulExtended", new List() class OpSMulExtended (line 2218) | public class OpSMulExtended : Instruction method OpSMulExtended (line 2220) | public OpSMulExtended() : base("OpSMulExtended", new List() class OpAny (line 2225) | public class OpAny : Instruction method OpAny (line 2227) | public OpAny() : base("OpAny", new List() class OpAll (line 2232) | public class OpAll : Instruction method OpAll (line 2234) | public OpAll() : base("OpAll", new List() class OpIsNan (line 2239) | public class OpIsNan : Instruction method OpIsNan (line 2241) | public OpIsNan() : base("OpIsNan", new List() class OpIsInf (line 2246) | public class OpIsInf : Instruction method OpIsInf (line 2248) | public OpIsInf() : base("OpIsInf", new List() class OpIsFinite (line 2253) | public class OpIsFinite : Instruction method OpIsFinite (line 2255) | public OpIsFinite() : base("OpIsFinite", new List() class OpIsNormal (line 2260) | public class OpIsNormal : Instruction method OpIsNormal (line 2262) | public OpIsNormal() : base("OpIsNormal", new List() class OpSignBitSet (line 2267) | public class OpSignBitSet : Instruction method OpSignBitSet (line 2269) | public OpSignBitSet() : base("OpSignBitSet", new List() class OpLessOrGreater (line 2274) | public class OpLessOrGreater : Instruction method OpLessOrGreater (line 2276) | public OpLessOrGreater() : base("OpLessOrGreater", new List() class OpOrdered (line 2281) | public class OpOrdered : Instruction method OpOrdered (line 2283) | public OpOrdered() : base("OpOrdered", new List() class OpUnordered (line 2288) | public class OpUnordered : Instruction method OpUnordered (line 2290) | public OpUnordered() : base("OpUnordered", new List() class OpLogicalEqual (line 2295) | public class OpLogicalEqual : Instruction method OpLogicalEqual (line 2297) | public OpLogicalEqual() : base("OpLogicalEqual", new List() class OpLogicalNotEqual (line 2302) | public class OpLogicalNotEqual : Instruction method OpLogicalNotEqual (line 2304) | public OpLogicalNotEqual() : base("OpLogicalNotEqual", new List() class OpLogicalAnd (line 2316) | public class OpLogicalAnd : Instruction method OpLogicalAnd (line 2318) | public OpLogicalAnd() : base("OpLogicalAnd", new List() class OpLogicalNot (line 2323) | public class OpLogicalNot : Instruction method OpLogicalNot (line 2325) | public OpLogicalNot() : base("OpLogicalNot", new List() class OpSelect (line 2330) | public class OpSelect : Instruction method OpSelect (line 2332) | public OpSelect() : base("OpSelect", new List() class OpIEqual (line 2337) | public class OpIEqual : Instruction method OpIEqual (line 2339) | public OpIEqual() : base("OpIEqual", new List() class OpINotEqual (line 2344) | public class OpINotEqual : Instruction method OpINotEqual (line 2346) | public OpINotEqual() : base("OpINotEqual", new List() class OpUGreaterThan (line 2351) | public class OpUGreaterThan : Instruction method OpUGreaterThan (line 2353) | public OpUGreaterThan() : base("OpUGreaterThan", new List() class OpSGreaterThan (line 2358) | public class OpSGreaterThan : Instruction method OpSGreaterThan (line 2360) | public OpSGreaterThan() : base("OpSGreaterThan", new List() class OpUGreaterThanEqual (line 2365) | public class OpUGreaterThanEqual : Instruction method OpUGreaterThanEqual (line 2367) | public OpUGreaterThanEqual() : base("OpUGreaterThanEqual", new List() class OpSLessThan (line 2386) | public class OpSLessThan : Instruction method OpSLessThan (line 2388) | public OpSLessThan() : base("OpSLessThan", new List() class OpULessThanEqual (line 2393) | public class OpULessThanEqual : Instruction method OpULessThanEqual (line 2395) | public OpULessThanEqual() : base("OpULessThanEqual", new List() class OpSLessThanEqual (line 2400) | public class OpSLessThanEqual : Instruction method OpSLessThanEqual (line 2402) | public OpSLessThanEqual() : base("OpSLessThanEqual", new List() class OpFOrdEqual (line 2407) | public class OpFOrdEqual : Instruction method OpFOrdEqual (line 2409) | public OpFOrdEqual() : base("OpFOrdEqual", new List() class OpFUnordEqual (line 2414) | public class OpFUnordEqual : Instruction method OpFUnordEqual (line 2416) | public OpFUnordEqual() : base("OpFUnordEqual", new List() class OpFOrdNotEqual (line 2421) | public class OpFOrdNotEqual : Instruction method OpFOrdNotEqual (line 2423) | public OpFOrdNotEqual() : base("OpFOrdNotEqual", new List() class OpFUnordNotEqual (line 2428) | public class OpFUnordNotEqual : Instruction method OpFUnordNotEqual (line 2430) | public OpFUnordNotEqual() : base("OpFUnordNotEqual", new List() class OpFOrdLessThan (line 2435) | public class OpFOrdLessThan : Instruction method OpFOrdLessThan (line 2437) | public OpFOrdLessThan() : base("OpFOrdLessThan", new List() class OpFUnordLessThan (line 2442) | public class OpFUnordLessThan : Instruction method OpFUnordLessThan (line 2444) | public OpFUnordLessThan() : base("OpFUnordLessThan", new List() class OpFOrdGreaterThan (line 2449) | public class OpFOrdGreaterThan : Instruction method OpFOrdGreaterThan (line 2451) | public OpFOrdGreaterThan() : base("OpFOrdGreaterThan", new List() class OpBitwiseXor (line 2519) | public class OpBitwiseXor : Instruction method OpBitwiseXor (line 2521) | public OpBitwiseXor() : base("OpBitwiseXor", new List() class OpBitwiseAnd (line 2526) | public class OpBitwiseAnd : Instruction method OpBitwiseAnd (line 2528) | public OpBitwiseAnd() : base("OpBitwiseAnd", new List() class OpNot (line 2533) | public class OpNot : Instruction method OpNot (line 2535) | public OpNot() : base("OpNot", new List() class OpBitFieldInsert (line 2540) | public class OpBitFieldInsert : Instruction method OpBitFieldInsert (line 2542) | public OpBitFieldInsert() : base("OpBitFieldInsert", new List() class OpBitFieldSExtract (line 2547) | public class OpBitFieldSExtract : Instruction method OpBitFieldSExtract (line 2549) | public OpBitFieldSExtract() : base("OpBitFieldSExtract", new List() class OpBitCount (line 2568) | public class OpBitCount : Instruction method OpBitCount (line 2570) | public OpBitCount() : base("OpBitCount", new List() class OpDPdx (line 2575) | public class OpDPdx : Instruction method OpDPdx (line 2577) | public OpDPdx() : base("OpDPdx", new List() class OpDPdy (line 2582) | public class OpDPdy : Instruction method OpDPdy (line 2584) | public OpDPdy() : base("OpDPdy", new List() class OpFwidth (line 2589) | public class OpFwidth : Instruction method OpFwidth (line 2591) | public OpFwidth() : base("OpFwidth", new List() class OpDPdxFine (line 2596) | public class OpDPdxFine : Instruction method OpDPdxFine (line 2598) | public OpDPdxFine() : base("OpDPdxFine", new List() class OpDPdyFine (line 2603) | public class OpDPdyFine : Instruction method OpDPdyFine (line 2605) | public OpDPdyFine() : base("OpDPdyFine", new List() class OpFwidthFine (line 2610) | public class OpFwidthFine : Instruction method OpFwidthFine (line 2612) | public OpFwidthFine() : base("OpFwidthFine", new List() class OpDPdxCoarse (line 2617) | public class OpDPdxCoarse : Instruction method OpDPdxCoarse (line 2619) | public OpDPdxCoarse() : base("OpDPdxCoarse", new List() class OpDPdyCoarse (line 2624) | public class OpDPdyCoarse : Instruction method OpDPdyCoarse (line 2626) | public OpDPdyCoarse() : base("OpDPdyCoarse", new List() class OpFwidthCoarse (line 2631) | public class OpFwidthCoarse : Instruction method OpFwidthCoarse (line 2633) | public OpFwidthCoarse() : base("OpFwidthCoarse", new List() class OpEmitVertex (line 2638) | public class OpEmitVertex : Instruction method OpEmitVertex (line 2640) | public OpEmitVertex() : base("OpEmitVertex") class OpEndPrimitive (line 2644) | public class OpEndPrimitive : Instruction method OpEndPrimitive (line 2646) | public OpEndPrimitive() : base("OpEndPrimitive") class OpEmitStreamVertex (line 2650) | public class OpEmitStreamVertex : Instruction method OpEmitStreamVertex (line 2652) | public OpEmitStreamVertex() : base("OpEmitStreamVertex", new List() class OpMemoryBarrier (line 2671) | public class OpMemoryBarrier : Instruction method OpMemoryBarrier (line 2673) | public OpMemoryBarrier() : base("OpMemoryBarrier", new List() class OpAtomicLoad (line 2678) | public class OpAtomicLoad : Instruction method OpAtomicLoad (line 2680) | public OpAtomicLoad() : base("OpAtomicLoad", new List() class OpAtomicStore (line 2685) | public class OpAtomicStore : Instruction method OpAtomicStore (line 2687) | public OpAtomicStore() : base("OpAtomicStore", new List() class OpAtomicExchange (line 2692) | public class OpAtomicExchange : Instruction method OpAtomicExchange (line 2694) | public OpAtomicExchange() : base("OpAtomicExchange", new List() class OpAtomicCompareExchange (line 2699) | public class OpAtomicCompareExchange : Instruction method OpAtomicCompareExchange (line 2701) | public OpAtomicCompareExchange() : base("OpAtomicCompareExchange", new... class OpAtomicCompareExchangeWeak (line 2706) | public class OpAtomicCompareExchangeWeak : Instruction method OpAtomicCompareExchangeWeak (line 2708) | public OpAtomicCompareExchangeWeak() : base("OpAtomicCompareExchangeWe... class OpAtomicIIncrement (line 2713) | public class OpAtomicIIncrement : Instruction method OpAtomicIIncrement (line 2715) | public OpAtomicIIncrement() : base("OpAtomicIIncrement", new List() class OpAtomicISub (line 2734) | public class OpAtomicISub : Instruction method OpAtomicISub (line 2736) | public OpAtomicISub() : base("OpAtomicISub", new List() class OpAtomicSMin (line 2741) | public class OpAtomicSMin : Instruction method OpAtomicSMin (line 2743) | public OpAtomicSMin() : base("OpAtomicSMin", new List() class OpAtomicUMin (line 2748) | public class OpAtomicUMin : Instruction method OpAtomicUMin (line 2750) | public OpAtomicUMin() : base("OpAtomicUMin", new List() class OpAtomicSMax (line 2755) | public class OpAtomicSMax : Instruction method OpAtomicSMax (line 2757) | public OpAtomicSMax() : base("OpAtomicSMax", new List() class OpAtomicUMax (line 2762) | public class OpAtomicUMax : Instruction method OpAtomicUMax (line 2764) | public OpAtomicUMax() : base("OpAtomicUMax", new List() class OpAtomicAnd (line 2769) | public class OpAtomicAnd : Instruction method OpAtomicAnd (line 2771) | public OpAtomicAnd() : base("OpAtomicAnd", new List() class OpAtomicOr (line 2776) | public class OpAtomicOr : Instruction method OpAtomicOr (line 2778) | public OpAtomicOr() : base("OpAtomicOr", new List() class OpAtomicXor (line 2783) | public class OpAtomicXor : Instruction method OpAtomicXor (line 2785) | public OpAtomicXor() : base("OpAtomicXor", new List() class OpPhi (line 2790) | public class OpPhi : Instruction method OpPhi (line 2792) | public OpPhi() : base("OpPhi", new List() class OpLoopMerge (line 2797) | public class OpLoopMerge : Instruction method OpLoopMerge (line 2799) | public OpLoopMerge() : base("OpLoopMerge", new List() class OpSelectionMerge (line 2804) | public class OpSelectionMerge : Instruction method OpSelectionMerge (line 2806) | public OpSelectionMerge() : base("OpSelectionMerge", new List() class OpLabel (line 2811) | public class OpLabel : Instruction method OpLabel (line 2813) | public OpLabel() : base("OpLabel", new List() class OpBranch (line 2818) | public class OpBranch : Instruction method OpBranch (line 2820) | public OpBranch() : base("OpBranch", new List() class OpBranchConditional (line 2825) | public class OpBranchConditional : Instruction method OpBranchConditional (line 2827) | public OpBranchConditional() : base("OpBranchConditional", new List() class OpKill (line 2839) | public class OpKill : Instruction method OpKill (line 2841) | public OpKill() : base("OpKill") class OpReturn (line 2845) | public class OpReturn : Instruction method OpReturn (line 2847) | public OpReturn() : base("OpReturn") class OpReturnValue (line 2851) | public class OpReturnValue : Instruction method OpReturnValue (line 2853) | public OpReturnValue() : base("OpReturnValue", new List() class OpUnreachable (line 2858) | public class OpUnreachable : Instruction method OpUnreachable (line 2860) | public OpUnreachable() : base("OpUnreachable") class OpLifetimeStart (line 2864) | public class OpLifetimeStart : Instruction method OpLifetimeStart (line 2866) | public OpLifetimeStart() : base("OpLifetimeStart", new List() class OpLifetimeStop (line 2871) | public class OpLifetimeStop : Instruction method OpLifetimeStop (line 2873) | public OpLifetimeStop() : base("OpLifetimeStop", new List() class OpGroupAsyncCopy (line 2878) | public class OpGroupAsyncCopy : Instruction method OpGroupAsyncCopy (line 2880) | public OpGroupAsyncCopy() : base("OpGroupAsyncCopy", new List() class OpGroupWaitEvents (line 2885) | public class OpGroupWaitEvents : Instruction method OpGroupWaitEvents (line 2887) | public OpGroupWaitEvents() : base("OpGroupWaitEvents", new List() class OpGroupAny (line 2899) | public class OpGroupAny : Instruction method OpGroupAny (line 2901) | public OpGroupAny() : base("OpGroupAny", new List() class OpGroupBroadcast (line 2906) | public class OpGroupBroadcast : Instruction method OpGroupBroadcast (line 2908) | public OpGroupBroadcast() : base("OpGroupBroadcast", new List() class OpGroupIAdd (line 2913) | public class OpGroupIAdd : Instruction method OpGroupIAdd (line 2915) | public OpGroupIAdd() : base("OpGroupIAdd", new List() class OpGroupFAdd (line 2920) | public class OpGroupFAdd : Instruction method OpGroupFAdd (line 2922) | public OpGroupFAdd() : base("OpGroupFAdd", new List() class OpGroupFMin (line 2927) | public class OpGroupFMin : Instruction method OpGroupFMin (line 2929) | public OpGroupFMin() : base("OpGroupFMin", new List() class OpGroupUMin (line 2934) | public class OpGroupUMin : Instruction method OpGroupUMin (line 2936) | public OpGroupUMin() : base("OpGroupUMin", new List() class OpGroupSMin (line 2941) | public class OpGroupSMin : Instruction method OpGroupSMin (line 2943) | public OpGroupSMin() : base("OpGroupSMin", new List() class OpGroupFMax (line 2948) | public class OpGroupFMax : Instruction method OpGroupFMax (line 2950) | public OpGroupFMax() : base("OpGroupFMax", new List() class OpGroupUMax (line 2955) | public class OpGroupUMax : Instruction method OpGroupUMax (line 2957) | public OpGroupUMax() : base("OpGroupUMax", new List() class OpGroupSMax (line 2962) | public class OpGroupSMax : Instruction method OpGroupSMax (line 2964) | public OpGroupSMax() : base("OpGroupSMax", new List() class OpReadPipe (line 2969) | public class OpReadPipe : Instruction method OpReadPipe (line 2971) | public OpReadPipe() : base("OpReadPipe", new List() class OpWritePipe (line 2976) | public class OpWritePipe : Instruction method OpWritePipe (line 2978) | public OpWritePipe() : base("OpWritePipe", new List() class OpReservedReadPipe (line 2983) | public class OpReservedReadPipe : Instruction method OpReservedReadPipe (line 2985) | public OpReservedReadPipe() : base("OpReservedReadPipe", new List() class OpCommitWritePipe (line 3018) | public class OpCommitWritePipe : Instruction method OpCommitWritePipe (line 3020) | public OpCommitWritePipe() : base("OpCommitWritePipe", new List() class OpEnqueueKernel (line 3081) | public class OpEnqueueKernel : Instruction method OpEnqueueKernel (line 3083) | public OpEnqueueKernel() : base("OpEnqueueKernel", new List() class OpGetKernelNDrangeSubGroupCount (line 3088) | public class OpGetKernelNDrangeSubGroupCount : Instruction method OpGetKernelNDrangeSubGroupCount (line 3090) | public OpGetKernelNDrangeSubGroupCount() : base("OpGetKernelNDrangeSub... class OpGetKernelNDrangeMaxSubGroupSize (line 3095) | public class OpGetKernelNDrangeMaxSubGroupSize : Instruction method OpGetKernelNDrangeMaxSubGroupSize (line 3097) | public OpGetKernelNDrangeMaxSubGroupSize() : base("OpGetKernelNDrangeM... class OpGetKernelWorkGroupSize (line 3102) | public class OpGetKernelWorkGroupSize : Instruction method OpGetKernelWorkGroupSize (line 3104) | public OpGetKernelWorkGroupSize() : base("OpGetKernelWorkGroupSize", n... class OpGetKernelPreferredWorkGroupSizeMultiple (line 3109) | public class OpGetKernelPreferredWorkGroupSizeMultiple : Instruction method OpGetKernelPreferredWorkGroupSizeMultiple (line 3111) | public OpGetKernelPreferredWorkGroupSizeMultiple() : base("OpGetKernel... class OpRetainEvent (line 3116) | public class OpRetainEvent : Instruction method OpRetainEvent (line 3118) | public OpRetainEvent() : base("OpRetainEvent", new List() class OpReleaseEvent (line 3123) | public class OpReleaseEvent : Instruction method OpReleaseEvent (line 3125) | public OpReleaseEvent() : base("OpReleaseEvent", new List() class OpCreateUserEvent (line 3130) | public class OpCreateUserEvent : Instruction method OpCreateUserEvent (line 3132) | public OpCreateUserEvent() : base("OpCreateUserEvent", new List() class OpSetUserEventStatus (line 3144) | public class OpSetUserEventStatus : Instruction method OpSetUserEventStatus (line 3146) | public OpSetUserEventStatus() : base("OpSetUserEventStatus", new List<... class OpCaptureEventProfilingInfo (line 3151) | public class OpCaptureEventProfilingInfo : Instruction method OpCaptureEventProfilingInfo (line 3153) | public OpCaptureEventProfilingInfo() : base("OpCaptureEventProfilingIn... class OpGetDefaultQueue (line 3158) | public class OpGetDefaultQueue : Instruction method OpGetDefaultQueue (line 3160) | public OpGetDefaultQueue() : base("OpGetDefaultQueue", new List() class OpImageSparseSampleImplicitLod (line 3172) | public class OpImageSparseSampleImplicitLod : Instruction method OpImageSparseSampleImplicitLod (line 3174) | public OpImageSparseSampleImplicitLod() : base("OpImageSparseSampleImp... class OpImageSparseSampleExplicitLod (line 3179) | public class OpImageSparseSampleExplicitLod : Instruction method OpImageSparseSampleExplicitLod (line 3181) | public OpImageSparseSampleExplicitLod() : base("OpImageSparseSampleExp... class OpImageSparseSampleDrefImplicitLod (line 3186) | public class OpImageSparseSampleDrefImplicitLod : Instruction method OpImageSparseSampleDrefImplicitLod (line 3188) | public OpImageSparseSampleDrefImplicitLod() : base("OpImageSparseSampl... class OpImageSparseSampleDrefExplicitLod (line 3193) | public class OpImageSparseSampleDrefExplicitLod : Instruction method OpImageSparseSampleDrefExplicitLod (line 3195) | public OpImageSparseSampleDrefExplicitLod() : base("OpImageSparseSampl... class OpImageSparseSampleProjImplicitLod (line 3200) | public class OpImageSparseSampleProjImplicitLod : Instruction method OpImageSparseSampleProjImplicitLod (line 3202) | public OpImageSparseSampleProjImplicitLod() : base("OpImageSparseSampl... class OpImageSparseSampleProjExplicitLod (line 3207) | public class OpImageSparseSampleProjExplicitLod : Instruction method OpImageSparseSampleProjExplicitLod (line 3209) | public OpImageSparseSampleProjExplicitLod() : base("OpImageSparseSampl... class OpImageSparseSampleProjDrefImplicitLod (line 3214) | public class OpImageSparseSampleProjDrefImplicitLod : Instruction method OpImageSparseSampleProjDrefImplicitLod (line 3216) | public OpImageSparseSampleProjDrefImplicitLod() : base("OpImageSparseS... class OpImageSparseSampleProjDrefExplicitLod (line 3221) | public class OpImageSparseSampleProjDrefExplicitLod : Instruction method OpImageSparseSampleProjDrefExplicitLod (line 3223) | public OpImageSparseSampleProjDrefExplicitLod() : base("OpImageSparseS... class OpImageSparseFetch (line 3228) | public class OpImageSparseFetch : Instruction method OpImageSparseFetch (line 3230) | public OpImageSparseFetch() : base("OpImageSparseFetch", new List() class OpTypePipeStorage (line 3290) | public class OpTypePipeStorage : Instruction method OpTypePipeStorage (line 3292) | public OpTypePipeStorage() : base("OpTypePipeStorage", new List() class OpSubgroupBallotKHR (line 3367) | public class OpSubgroupBallotKHR : Instruction method OpSubgroupBallotKHR (line 3369) | public OpSubgroupBallotKHR() : base("OpSubgroupBallotKHR", new List() class OpSubgroupAnyKHR (line 3388) | public class OpSubgroupAnyKHR : Instruction method OpSubgroupAnyKHR (line 3390) | public OpSubgroupAnyKHR() : base("OpSubgroupAnyKHR", new List() class OpSubgroupAllEqualKHR (line 3395) | public class OpSubgroupAllEqualKHR : Instruction method OpSubgroupAllEqualKHR (line 3397) | public OpSubgroupAllEqualKHR() : base("OpSubgroupAllEqualKHR", new Lis... class OpSubgroupReadInvocationKHR (line 3402) | public class OpSubgroupReadInvocationKHR : Instruction method OpSubgroupReadInvocationKHR (line 3404) | public OpSubgroupReadInvocationKHR() : base("OpSubgroupReadInvocationK... class OpGroupIAddNonUniformAMD (line 3409) | public class OpGroupIAddNonUniformAMD : Instruction method OpGroupIAddNonUniformAMD (line 3411) | public OpGroupIAddNonUniformAMD() : base("OpGroupIAddNonUniformAMD", n... class OpGroupFAddNonUniformAMD (line 3416) | public class OpGroupFAddNonUniformAMD : Instruction method OpGroupFAddNonUniformAMD (line 3418) | public OpGroupFAddNonUniformAMD() : base("OpGroupFAddNonUniformAMD", n... class OpGroupFMinNonUniformAMD (line 3423) | public class OpGroupFMinNonUniformAMD : Instruction method OpGroupFMinNonUniformAMD (line 3425) | public OpGroupFMinNonUniformAMD() : base("OpGroupFMinNonUniformAMD", n... class OpGroupUMinNonUniformAMD (line 3430) | public class OpGroupUMinNonUniformAMD : Instruction method OpGroupUMinNonUniformAMD (line 3432) | public OpGroupUMinNonUniformAMD() : base("OpGroupUMinNonUniformAMD", n... class OpGroupSMinNonUniformAMD (line 3437) | public class OpGroupSMinNonUniformAMD : Instruction method OpGroupSMinNonUniformAMD (line 3439) | public OpGroupSMinNonUniformAMD() : base("OpGroupSMinNonUniformAMD", n... class OpGroupFMaxNonUniformAMD (line 3444) | public class OpGroupFMaxNonUniformAMD : Instruction method OpGroupFMaxNonUniformAMD (line 3446) | public OpGroupFMaxNonUniformAMD() : base("OpGroupFMaxNonUniformAMD", n... class OpGroupUMaxNonUniformAMD (line 3451) | public class OpGroupUMaxNonUniformAMD : Instruction method OpGroupUMaxNonUniformAMD (line 3453) | public OpGroupUMaxNonUniformAMD() : base("OpGroupUMaxNonUniformAMD", n... class OpGroupSMaxNonUniformAMD (line 3458) | public class OpGroupSMaxNonUniformAMD : Instruction method OpGroupSMaxNonUniformAMD (line 3460) | public OpGroupSMaxNonUniformAMD() : base("OpGroupSMaxNonUniformAMD", n... class OpFragmentMaskFetchAMD (line 3465) | public class OpFragmentMaskFetchAMD : Instruction method OpFragmentMaskFetchAMD (line 3467) | public OpFragmentMaskFetchAMD() : base("OpFragmentMaskFetchAMD", new L... class OpFragmentFetchAMD (line 3472) | public class OpFragmentFetchAMD : Instruction method OpFragmentFetchAMD (line 3474) | public OpFragmentFetchAMD() : base("OpFragmentFetchAMD", new List memberTypes) method SetMemberName (line 299) | public void SetMemberName(uint member, string name) method ToString (line 304) | public override string ToString() method ToString (line 311) | public override StringBuilder ToString(StringBuilder sb) class OpaqueType (line 340) | public class OpaqueType : Type class PointerType (line 344) | public class PointerType : Type method PointerType (line 346) | public PointerType(StorageClass storageClass, Type type) method PointerType (line 352) | public PointerType(StorageClass storageClass) method ResolveForwardReference (line 357) | public void ResolveForwardReference(Type t) method ToString (line 362) | public override string ToString() method ToString (line 374) | public override StringBuilder ToString(StringBuilder sb) class FunctionType (line 389) | public class FunctionType : Type method FunctionType (line 391) | public FunctionType(Type returnType, IReadOnlyList parameterTypes) class EventType (line 401) | public class EventType : Type class DeviceEventType (line 405) | public class DeviceEventType : Type class ReserveIdType (line 409) | public class ReserveIdType : Type class QueueType (line 413) | public class QueueType : Type class PipeType (line 417) | public class PipeType : Type class PipeStorage (line 421) | public class PipeStorage : Type class NamedBarrier (line 425) | public class NamedBarrier : Type FILE: AssetStudioUtility/FMOD Studio API/fmod.cs class VERSION (line 18) | public class VERSION class CONSTANTS (line 28) | public class CONSTANTS type RESULT (line 49) | public enum RESULT : int type CHANNELCONTROL_TYPE (line 151) | public enum CHANNELCONTROL_TYPE : int type VECTOR (line 184) | [StructLayout(LayoutKind.Sequential)] type _3D_ATTRIBUTES (line 205) | [StructLayout(LayoutKind.Sequential)] type ASYNCREADINFO (line 238) | [StructLayout(LayoutKind.Sequential)] type OUTPUTTYPE (line 287) | public enum OUTPUTTYPE : int type DEBUG_MODE (line 328) | public enum DEBUG_MODE : int type DEBUG_FLAGS (line 350) | [Flags] type MEMORY_TYPE (line 388) | [Flags] type SPEAKERMODE (line 490) | public enum SPEAKERMODE : int type SPEAKER (line 517) | public enum SPEAKER : int type CHANNELMASK (line 550) | [Flags] type CHANNELORDER (line 589) | public enum CHANNELORDER : int type PLUGINTYPE (line 616) | public enum PLUGINTYPE : int type INITFLAGS (line 646) | [Flags] type SOUND_TYPE (line 676) | public enum SOUND_TYPE type SOUND_FORMAT (line 720) | public enum SOUND_FORMAT : int type MODE (line 773) | [Flags] type OPENSTATE (line 824) | public enum OPENSTATE : int type SOUNDGROUP_BEHAVIOR (line 858) | public enum SOUNDGROUP_BEHAVIOR : int type CHANNELCONTROL_CALLBACK_TYPE (line 886) | public enum CHANNELCONTROL_CALLBACK_TYPE : int type CHANNELCONTROL_DSP_INDEX (line 909) | public struct CHANNELCONTROL_DSP_INDEX type ERRORCALLBACK_INSTANCETYPE (line 929) | public enum ERRORCALLBACK_INSTANCETYPE type ERRORCALLBACK_INFO (line 966) | [StructLayout(LayoutKind.Sequential)] type SYSTEM_CALLBACK_TYPE (line 1002) | [Flags] type StringWrapper (line 1022) | [StructLayout(LayoutKind.Sequential)] type DSP_RESAMPLER (line 1096) | public enum DSP_RESAMPLER : int type DSPCONNECTION_TYPE (line 1144) | public enum DSPCONNECTION_TYPE : int type TAGTYPE (line 1166) | public enum TAGTYPE : int type TAGDATATYPE (line 1196) | public enum TAGDATATYPE : int type TAG (line 1226) | [StructLayout(LayoutKind.Sequential)] type TIMEUNIT (line 1258) | [Flags] type PORT_INDEX (line 1286) | public struct PORT_INDEX type CREATESOUNDEXINFO (line 1367) | [StructLayout(LayoutKind.Sequential)] type REVERB_PROPERTIES (line 1435) | [StructLayout(LayoutKind.Sequential)] method REVERB_PROPERTIES (line 1452) | public REVERB_PROPERTIES(float decayTime, float earlyDelay, float late... class PRESET (line 1489) | public class PRESET method OFF (line 1492) | public static REVERB_PROPERTIES OFF() { return new REV... method GENERIC (line 1493) | public static REVERB_PROPERTIES GENERIC() { return new REV... method PADDEDCELL (line 1494) | public static REVERB_PROPERTIES PADDEDCELL() { return new REV... method ROOM (line 1495) | public static REVERB_PROPERTIES ROOM() { return new REV... method BATHROOM (line 1496) | public static REVERB_PROPERTIES BATHROOM() { return new REV... method LIVINGROOM (line 1497) | public static REVERB_PROPERTIES LIVINGROOM() { return new REV... method STONEROOM (line 1498) | public static REVERB_PROPERTIES STONEROOM() { return new REV... method AUDITORIUM (line 1499) | public static REVERB_PROPERTIES AUDITORIUM() { return new REV... method CONCERTHALL (line 1500) | public static REVERB_PROPERTIES CONCERTHALL() { return new REV... method CAVE (line 1501) | public static REVERB_PROPERTIES CAVE() { return new REV... method ARENA (line 1502) | public static REVERB_PROPERTIES ARENA() { return new REV... method HANGAR (line 1503) | public static REVERB_PROPERTIES HANGAR() { return new REV... method CARPETTEDHALLWAY (line 1504) | public static REVERB_PROPERTIES CARPETTEDHALLWAY() { return new REV... method HALLWAY (line 1505) | public static REVERB_PROPERTIES HALLWAY() { return new REV... method STONECORRIDOR (line 1506) | public static REVERB_PROPERTIES STONECORRIDOR() { return new REV... method ALLEY (line 1507) | public static REVERB_PROPERTIES ALLEY() { return new REV... method FOREST (line 1508) | public static REVERB_PROPERTIES FOREST() { return new REV... method CITY (line 1509) | public static REVERB_PROPERTIES CITY() { return new REV... method MOUNTAINS (line 1510) | public static REVERB_PROPERTIES MOUNTAINS() { return new REV... method QUARRY (line 1511) | public static REVERB_PROPERTIES QUARRY() { return new REV... method PLAIN (line 1512) | public static REVERB_PROPERTIES PLAIN() { return new REV... method PARKINGLOT (line 1513) | public static REVERB_PROPERTIES PARKINGLOT() { return new REV... method SEWERPIPE (line 1514) | public static REVERB_PROPERTIES SEWERPIPE() { return new REV... method UNDERWATER (line 1515) | public static REVERB_PROPERTIES UNDERWATER() { return new REV... type ADVANCEDSETTINGS (line 1532) | [StructLayout(LayoutKind.Sequential)] type DRIVER_STATE (line 1579) | [Flags] class Factory (line 1589) | public class Factory method Factory (line 1592) | static Factory() method System_Create (line 1597) | public static RESULT System_Create(out System system) method FMOD_System_Create (line 1618) | [DllImport(VERSION.dll)] class Memory (line 1624) | public class Memory method Initialize (line 1626) | public static RESULT Initialize(IntPtr poolmem, int poollen, MEMORY_AL... method GetStats (line 1631) | public static RESULT GetStats(out int currentalloced, out int maxalloced) method GetStats (line 1636) | public static RESULT GetStats(out int currentalloced, out int maxalloc... method FMOD_Memory_Initialize (line 1644) | [DllImport(VERSION.dll)] method FMOD_Memory_GetStats (line 1646) | [DllImport(VERSION.dll)] class Debug (line 1652) | public class Debug method Initialize (line 1654) | public static RESULT Initialize(DEBUG_FLAGS flags, DEBUG_MODE mode, DE... method FMOD_Debug_Initialize (line 1662) | [DllImport(VERSION.dll)] class HandleBase (line 1668) | public class HandleBase method HandleBase (line 1670) | public HandleBase(IntPtr newPtr) method isValid (line 1675) | public bool isValid() method getRaw (line 1680) | public IntPtr getRaw() method Equals (line 1689) | public override bool Equals(Object obj) method Equals (line 1693) | public bool Equals(HandleBase p) method GetHashCode (line 1698) | public override int GetHashCode() class System (line 1728) | public class System : HandleBase method release (line 1730) | public RESULT release () method setOutput (line 1742) | public RESULT setOutput (OUTPUTTYPE output) method getOutput (line 1746) | public RESULT getOutput (out OUTPUTTYPE output) method getNumDrivers (line 1750) | public RESULT getNumDrivers (out int numdrivers) method getDriverInfo (line 1754) | public RESULT getDriverInfo (int id, StringBuilder name, int ... method setDriver (line 1765) | public RESULT setDriver (int driver) method getDriver (line 1769) | public RESULT getDriver (out int driver) method setSoftwareChannels (line 1773) | public RESULT setSoftwareChannels (int numsoftwarechannels) method getSoftwareChannels (line 1777) | public RESULT getSoftwareChannels (out int numsoftwarechannels) method setSoftwareFormat (line 1781) | public RESULT setSoftwareFormat (int samplerate, SPEAKERMODE spea... method getSoftwareFormat (line 1785) | public RESULT getSoftwareFormat (out int samplerate, out SPEAKERM... method setDSPBufferSize (line 1789) | public RESULT setDSPBufferSize (uint bufferlength, int numbuffers) method getDSPBufferSize (line 1793) | public RESULT getDSPBufferSize (out uint bufferlength, out int n... method setFileSystem (line 1797) | public RESULT setFileSystem (FILE_OPENCALLBACK useropen, FILE... method attachFileSystem (line 1801) | public RESULT attachFileSystem (FILE_OPENCALLBACK useropen, FILE... method setAdvancedSettings (line 1805) | public RESULT setAdvancedSettings (ref ADVANCEDSETTINGS settings) method getAdvancedSettings (line 1810) | public RESULT getAdvancedSettings (ref ADVANCEDSETTINGS settings) method setCallback (line 1815) | public RESULT setCallback (SYSTEM_CALLBACK callback, SYSTEM... method setPluginPath (line 1821) | public RESULT setPluginPath (string path) method loadPlugin (line 1825) | public RESULT loadPlugin (string filename, out uint handle... method loadPlugin (line 1829) | public RESULT loadPlugin (string filename, out uint handle) method unloadPlugin (line 1833) | public RESULT unloadPlugin (uint handle) method getNumPlugins (line 1837) | public RESULT getNumPlugins (PLUGINTYPE plugintype, out int n... method getPluginHandle (line 1841) | public RESULT getPluginHandle (PLUGINTYPE plugintype, int index... method getPluginInfo (line 1845) | public RESULT getPluginInfo (uint handle, out PLUGINTYPE plug... method setOutputByPlugin (line 1856) | public RESULT setOutputByPlugin (uint handle) method getOutputByPlugin (line 1860) | public RESULT getOutputByPlugin (out uint handle) method createDSPByPlugin (line 1864) | public RESULT createDSPByPlugin(uint handle, out DSP dsp) method getDSPInfoByPlugin (line 1874) | public RESULT getDSPInfoByPlugin(uint handle, out IntPtr description) method registerDSP (line 1884) | public RESULT registerDSP(ref DSP_DESCRIPTION description, out uint ha... method init (line 1896) | public RESULT init (int maxchannels, INITFLAGS flags... method close (line 1900) | public RESULT close () method update (line 1907) | public RESULT update () method setSpeakerPosition (line 1912) | public RESULT setSpeakerPosition(SPEAKER speaker, float x, float y, bo... method getSpeakerPosition (line 1916) | public RESULT getSpeakerPosition(SPEAKER speaker, out float x, out flo... method setStreamBufferSize (line 1920) | public RESULT setStreamBufferSize(uint filebuffersize, TIMEUNIT filebu... method getStreamBufferSize (line 1924) | public RESULT getStreamBufferSize(out uint filebuffersize, out TIMEUNI... method set3DSettings (line 1928) | public RESULT set3DSettings (float dopplerscale, float distan... method get3DSettings (line 1932) | public RESULT get3DSettings (out float dopplerscale, out floa... method set3DNumListeners (line 1936) | public RESULT set3DNumListeners (int numlisteners) method get3DNumListeners (line 1940) | public RESULT get3DNumListeners (out int numlisteners) method set3DListenerAttributes (line 1944) | public RESULT set3DListenerAttributes(int listener, ref VECTOR pos, re... method get3DListenerAttributes (line 1948) | public RESULT get3DListenerAttributes(int listener, out VECTOR pos, ou... method set3DRolloffCallback (line 1952) | public RESULT set3DRolloffCallback (CB_3D_ROLLOFFCALLBACK callback) method mixerSuspend (line 1956) | public RESULT mixerSuspend () method mixerResume (line 1960) | public RESULT mixerResume () method getDefaultMixMatrix (line 1964) | public RESULT getDefaultMixMatrix (SPEAKERMODE sourcespeakermode, S... method getSpeakerModeChannels (line 1968) | public RESULT getSpeakerModeChannels (SPEAKERMODE mode, out int channels) method getVersion (line 1974) | public RESULT getVersion (out uint version) method getOutputHandle (line 1978) | public RESULT getOutputHandle (out IntPtr handle) method getChannelsPlaying (line 1982) | public RESULT getChannelsPlaying (out int channels) method getChannelsReal (line 1986) | public RESULT getChannelsReal (out int channels) method getCPUUsage (line 1990) | public RESULT getCPUUsage (out float dsp, out float stream,... method getSoundRAM (line 1994) | public RESULT getSoundRAM (out int currentalloced, out int ... method createSound (line 2000) | public RESULT createSound (string name, MODE mode, ref CREA... method createSound (line 2015) | public RESULT createSound (byte[] data, MODE mode, ref CREA... method createSound (line 2027) | public RESULT createSound (string name, MODE mode, out Soun... method createStream (line 2034) | public RESULT createStream (string name, MODE mode, ref CRE... method createStream (line 2049) | public RESULT createStream (byte[] data, MODE mode, ref CRE... method createStream (line 2061) | public RESULT createStream (string name, MODE mode, out Sou... method createDSP (line 2068) | public RESULT createDSP (ref DSP_DESCRIPTION description,... method createDSPByType (line 2078) | public RESULT createDSPByType (DSP_TYPE type, out DSP dsp) method createChannelGroup (line 2088) | public RESULT createChannelGroup (string name, out ChannelGroup ch... method createSoundGroup (line 2100) | public RESULT createSoundGroup (string name, out SoundGroup soun... method createReverb3D (line 2112) | public RESULT createReverb3D (out Reverb3D reverb) method playSound (line 2120) | public RESULT playSound (Sound sound, ChannelGroup channe... method playDSP (line 2132) | public RESULT playDSP (DSP dsp, ChannelGroup channelGro... method getChannel (line 2144) | public RESULT getChannel (int channelid, out Channel channel) method getMasterChannelGroup (line 2154) | public RESULT getMasterChannelGroup (out ChannelGroup channelgroup) method getMasterSoundGroup (line 2164) | public RESULT getMasterSoundGroup (out SoundGroup soundgroup) method attachChannelGroupToPort (line 2176) | public RESULT attachChannelGroupToPort(uint portType, ulong portIndex,... method detachChannelGroupFromPort (line 2180) | public RESULT detachChannelGroupFromPort(ChannelGroup channelgroup) method setReverbProperties (line 2186) | public RESULT setReverbProperties (int instance, ref REVERB_PROPERT... method getReverbProperties (line 2190) | public RESULT getReverbProperties (int instance, out REVERB_PROPERT... method lockDSP (line 2196) | public RESULT lockDSP () method unlockDSP (line 2200) | public RESULT unlockDSP () method getRecordNumDrivers (line 2206) | public RESULT getRecordNumDrivers (out int numdrivers, out int numc... method getRecordDriverInfo (line 2210) | public RESULT getRecordDriverInfo(int id, StringBuilder name, int name... method getRecordPosition (line 2221) | public RESULT getRecordPosition (int id, out uint position) method recordStart (line 2225) | public RESULT recordStart (int id, Sound sound, bool loop) method recordStop (line 2229) | public RESULT recordStop (int id) method isRecording (line 2233) | public RESULT isRecording (int id, out bool recording) method createGeometry (line 2239) | public RESULT createGeometry (int maxpolygons, int maxvertices... method setGeometrySettings (line 2249) | public RESULT setGeometrySettings (float maxworldsize) method getGeometrySettings (line 2253) | public RESULT getGeometrySettings (out float maxworldsize) method loadGeometry (line 2257) | public RESULT loadGeometry(IntPtr data, int datasize, out Geometry geo... method getGeometryOcclusion (line 2267) | public RESULT getGeometryOcclusion (ref VECTOR listener, ref VECTOR... method setNetworkProxy (line 2273) | public RESULT setNetworkProxy (string proxy) method getNetworkProxy (line 2277) | public RESULT getNetworkProxy (StringBuilder proxy, int ... method setNetworkTimeout (line 2288) | public RESULT setNetworkTimeout (int timeout) method getNetworkTimeout (line 2292) | public RESULT getNetworkTimeout(out int timeout) method setUserData (line 2298) | public RESULT setUserData (IntPtr userdata) method getUserData (line 2302) | public RESULT getUserData (out IntPtr userdata) method FMOD_System_Release (line 2309) | [DllImport(VERSION.dll)] method FMOD_System_SetOutput (line 2311) | [DllImport(VERSION.dll)] method FMOD_System_GetOutput (line 2313) | [DllImport(VERSION.dll)] method FMOD_System_GetNumDrivers (line 2315) | [DllImport(VERSION.dll)] method FMOD_System_GetDriverInfo (line 2317) | [DllImport(VERSION.dll)] method FMOD_System_SetDriver (line 2319) | [DllImport(VERSION.dll)] method FMOD_System_GetDriver (line 2321) | [DllImport(VERSION.dll)] method FMOD_System_SetSoftwareChannels (line 2323) | [DllImport(VERSION.dll)] method FMOD_System_GetSoftwareChannels (line 2325) | [DllImport(VERSION.dll)] method FMOD_System_SetSoftwareFormat (line 2327) | [DllImport(VERSION.dll)] method FMOD_System_GetSoftwareFormat (line 2329) | [DllImport(VERSION.dll)] method FMOD_System_SetDSPBufferSize (line 2331) | [DllImport(VERSION.dll)] method FMOD_System_GetDSPBufferSize (line 2333) | [DllImport(VERSION.dll)] method FMOD_System_SetFileSystem (line 2335) | [DllImport(VERSION.dll)] method FMOD_System_AttachFileSystem (line 2337) | [DllImport(VERSION.dll)] method FMOD_System_SetPluginPath (line 2339) | [DllImport(VERSION.dll)] method FMOD_System_LoadPlugin (line 2341) | [DllImport(VERSION.dll)] method FMOD_System_UnloadPlugin (line 2343) | [DllImport(VERSION.dll)] method FMOD_System_GetNumPlugins (line 2345) | [DllImport(VERSION.dll)] method FMOD_System_GetPluginHandle (line 2347) | [DllImport(VERSION.dll)] method FMOD_System_GetPluginInfo (line 2349) | [DllImport(VERSION.dll)] method FMOD_System_CreateDSPByPlugin (line 2351) | [DllImport(VERSION.dll)] method FMOD_System_SetOutputByPlugin (line 2353) | [DllImport(VERSION.dll)] method FMOD_System_GetOutputByPlugin (line 2355) | [DllImport(VERSION.dll)] method FMOD_System_GetDSPInfoByPlugin (line 2357) | [DllImport(VERSION.dll)] method FMOD_System_RegisterDSP (line 2359) | [DllImport(VERSION.dll)] method FMOD_System_Init (line 2363) | [DllImport(VERSION.dll)] method FMOD_System_Close (line 2367) | [DllImport(VERSION.dll)] method FMOD_System_Update (line 2369) | [DllImport(VERSION.dll)] method FMOD_System_SetAdvancedSettings (line 2371) | [DllImport(VERSION.dll)] method FMOD_System_GetAdvancedSettings (line 2373) | [DllImport(VERSION.dll)] method FMOD_System_Set3DRolloffCallback (line 2375) | [DllImport(VERSION.dll)] method FMOD_System_MixerSuspend (line 2377) | [DllImport(VERSION.dll)] method FMOD_System_MixerResume (line 2379) | [DllImport(VERSION.dll)] method FMOD_System_GetDefaultMixMatrix (line 2381) | [DllImport(VERSION.dll)] method FMOD_System_GetSpeakerModeChannels (line 2383) | [DllImport(VERSION.dll)] method FMOD_System_SetCallback (line 2385) | [DllImport(VERSION.dll)] method FMOD_System_SetSpeakerPosition (line 2387) | [DllImport(VERSION.dll)] method FMOD_System_GetSpeakerPosition (line 2389) | [DllImport(VERSION.dll)] method FMOD_System_Set3DSettings (line 2391) | [DllImport(VERSION.dll)] method FMOD_System_Get3DSettings (line 2393) | [DllImport(VERSION.dll)] method FMOD_System_Set3DNumListeners (line 2395) | [DllImport(VERSION.dll)] method FMOD_System_Get3DNumListeners (line 2397) | [DllImport(VERSION.dll)] method FMOD_System_Set3DListenerAttributes (line 2399) | [DllImport(VERSION.dll)] method FMOD_System_Get3DListenerAttributes (line 2401) | [DllImport(VERSION.dll)] method FMOD_System_SetStreamBufferSize (line 2403) | [DllImport(VERSION.dll)] method FMOD_System_GetStreamBufferSize (line 2405) | [DllImport(VERSION.dll)] method FMOD_System_GetVersion (line 2407) | [DllImport(VERSION.dll)] method FMOD_System_GetOutputHandle (line 2409) | [DllImport(VERSION.dll)] method FMOD_System_GetChannelsPlaying (line 2411) | [DllImport(VERSION.dll)] method FMOD_System_GetChannelsReal (line 2413) | [DllImport(VERSION.dll)] method FMOD_System_GetCPUUsage (line 2415) | [DllImport(VERSION.dll)] method FMOD_System_GetSoundRAM (line 2417) | [DllImport(VERSION.dll)] method FMOD_System_CreateSound (line 2419) | [DllImport(VERSION.dll)] method FMOD_System_CreateStream (line 2421) | [DllImport(VERSION.dll)] method FMOD_System_CreateDSP (line 2423) | [DllImport(VERSION.dll)] method FMOD_System_CreateDSPByType (line 2425) | [DllImport(VERSION.dll)] method FMOD_System_CreateChannelGroup (line 2427) | [DllImport(VERSION.dll)] method FMOD_System_CreateSoundGroup (line 2429) | [DllImport(VERSION.dll)] method FMOD_System_CreateReverb3D (line 2431) | [DllImport(VERSION.dll)] method FMOD_System_PlaySound (line 2433) | [DllImport(VERSION.dll)] method FMOD_System_PlayDSP (line 2435) | [DllImport(VERSION.dll)] method FMOD_System_GetChannel (line 2437) | [DllImport(VERSION.dll)] method FMOD_System_GetMasterChannelGroup (line 2439) | [DllImport(VERSION.dll)] method FMOD_System_GetMasterSoundGroup (line 2441) | [DllImport(VERSION.dll)] method FMOD_System_AttachChannelGroupToPort (line 2443) | [DllImport(VERSION.dll)] method FMOD_System_DetachChannelGroupFromPort (line 2445) | [DllImport(VERSION.dll)] method FMOD_System_SetReverbProperties (line 2447) | [DllImport(VERSION.dll)] method FMOD_System_GetReverbProperties (line 2449) | [DllImport(VERSION.dll)] method FMOD_System_LockDSP (line 2451) | [DllImport(VERSION.dll)] method FMOD_System_UnlockDSP (line 2453) | [DllImport(VERSION.dll)] method FMOD_System_GetRecordNumDrivers (line 2455) | [DllImport(VERSION.dll)] method FMOD_System_GetRecordDriverInfo (line 2457) | [DllImport(VERSION.dll)] method FMOD_System_GetRecordPosition (line 2459) | [DllImport(VERSION.dll)] method FMOD_System_RecordStart (line 2461) | [DllImport(VERSION.dll)] method FMOD_System_RecordStop (line 2463) | [DllImport(VERSION.dll)] method FMOD_System_IsRecording (line 2465) | [DllImport(VERSION.dll)] method FMOD_System_CreateGeometry (line 2467) | [DllImport(VERSION.dll)] method FMOD_System_SetGeometrySettings (line 2469) | [DllImport(VERSION.dll)] method FMOD_System_GetGeometrySettings (line 2471) | [DllImport(VERSION.dll)] method FMOD_System_LoadGeometry (line 2473) | [DllImport(VERSION.dll)] method FMOD_System_GetGeometryOcclusion (line 2475) | [DllImport(VERSION.dll)] method FMOD_System_SetNetworkProxy (line 2477) | [DllImport(VERSION.dll)] method FMOD_System_GetNetworkProxy (line 2479) | [DllImport(VERSION.dll)] method FMOD_System_SetNetworkTimeout (line 2481) | [DllImport(VERSION.dll)] method FMOD_System_GetNetworkTimeout (line 2483) | [DllImport(VERSION.dll)] method FMOD_System_SetUserData (line 2485) | [DllImport(VERSION.dll)] method FMOD_System_GetUserData (line 2487) | [DllImport(VERSION.dll)] method System (line 2493) | public System(IntPtr raw) class Sound (line 2505) | public class Sound : HandleBase method release (line 2507) | public RESULT release () method getSystemObject (line 2516) | public RESULT getSystemObject (out System system) method @lock (line 2528) | public RESULT @lock (uint offset, uint length, out I... method unlock (line 2532) | public RESULT unlock (IntPtr ptr1, IntPtr ptr2, uint... method setDefaults (line 2536) | public RESULT setDefaults (float frequency, int priority) method getDefaults (line 2540) | public RESULT getDefaults (out float frequency, out int pr... method set3DMinMaxDistance (line 2544) | public RESULT set3DMinMaxDistance (float min, float max) method get3DMinMaxDistance (line 2548) | public RESULT get3DMinMaxDistance (out float min, out float max) method set3DConeSettings (line 2552) | public RESULT set3DConeSettings (float insideconeangle, float ou... method get3DConeSettings (line 2556) | public RESULT get3DConeSettings (out float insideconeangle, out ... method set3DCustomRolloff (line 2560) | public RESULT set3DCustomRolloff (ref VECTOR points, int numpoints) method get3DCustomRolloff (line 2564) | public RESULT get3DCustomRolloff (out IntPtr points, out int nump... method getSubSound (line 2568) | public RESULT getSubSound (int index, out Sound subsound) method getSubSoundParent (line 2578) | public RESULT getSubSoundParent(out Sound parentsound) method getName (line 2588) | public RESULT getName (StringBuilder name, int namelen) method getLength (line 2599) | public RESULT getLength (out uint length, TIMEUNIT lengt... method getFormat (line 2603) | public RESULT getFormat (out SOUND_TYPE type, out SOUND_... method getNumSubSounds (line 2607) | public RESULT getNumSubSounds (out int numsubsounds) method getNumTags (line 2611) | public RESULT getNumTags (out int numtags, out int numtag... method getTag (line 2615) | public RESULT getTag (string name, int index, out TAG... method getOpenState (line 2619) | public RESULT getOpenState (out OPENSTATE openstate, out ui... method readData (line 2623) | public RESULT readData (IntPtr buffer, uint lenbytes, o... method seekData (line 2627) | public RESULT seekData (uint pcm) method setSoundGroup (line 2631) | public RESULT setSoundGroup (SoundGroup soundgroup) method getSoundGroup (line 2635) | public RESULT getSoundGroup (out SoundGroup soundgroup) method getNumSyncPoints (line 2647) | public RESULT getNumSyncPoints (out int numsyncpoints) method getSyncPoint (line 2651) | public RESULT getSyncPoint (int index, out IntPtr point) method getSyncPointInfo (line 2655) | public RESULT getSyncPointInfo (IntPtr point, StringBuilder nam... method addSyncPoint (line 2666) | public RESULT addSyncPoint (uint offset, TIMEUNIT offsettyp... method deleteSyncPoint (line 2670) | public RESULT deleteSyncPoint (IntPtr point) method setMode (line 2676) | public RESULT setMode (MODE mode) method getMode (line 2680) | public RESULT getMode (out MODE mode) method setLoopCount (line 2684) | public RESULT setLoopCount (int loopcount) method getLoopCount (line 2688) | public RESULT getLoopCount (out int loopcount) method setLoopPoints (line 2692) | public RESULT setLoopPoints (uint loopstart, TIMEUNIT loopst... method getLoopPoints (line 2696) | public RESULT getLoopPoints (out uint loopstart, TIMEUNIT lo... method getMusicNumChannels (line 2702) | public RESULT getMusicNumChannels (out int numchannels) method setMusicChannelVolume (line 2706) | public RESULT setMusicChannelVolume (int channel, float volume) method getMusicChannelVolume (line 2710) | public RESULT getMusicChannelVolume (int channel, out float volume) method setMusicSpeed (line 2714) | public RESULT setMusicSpeed(float speed) method getMusicSpeed (line 2718) | public RESULT getMusicSpeed(out float speed) method setUserData (line 2724) | public RESULT setUserData (IntPtr userdata) method getUserData (line 2728) | public RESULT getUserData (out IntPtr userdata) method FMOD_Sound_Release (line 2735) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSystemObject (line 2737) | [DllImport(VERSION.dll)] method FMOD_Sound_Lock (line 2739) | [DllImport(VERSION.dll)] method FMOD_Sound_Unlock (line 2741) | [DllImport(VERSION.dll)] method FMOD_Sound_SetDefaults (line 2743) | [DllImport(VERSION.dll)] method FMOD_Sound_GetDefaults (line 2745) | [DllImport(VERSION.dll)] method FMOD_Sound_Set3DMinMaxDistance (line 2747) | [DllImport(VERSION.dll)] method FMOD_Sound_Get3DMinMaxDistance (line 2749) | [DllImport(VERSION.dll)] method FMOD_Sound_Set3DConeSettings (line 2751) | [DllImport(VERSION.dll)] method FMOD_Sound_Get3DConeSettings (line 2753) | [DllImport(VERSION.dll)] method FMOD_Sound_Set3DCustomRolloff (line 2755) | [DllImport(VERSION.dll)] method FMOD_Sound_Get3DCustomRolloff (line 2757) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSubSound (line 2759) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSubSoundParent (line 2761) | [DllImport(VERSION.dll)] method FMOD_Sound_GetName (line 2763) | [DllImport(VERSION.dll)] method FMOD_Sound_GetLength (line 2765) | [DllImport(VERSION.dll)] method FMOD_Sound_GetFormat (line 2767) | [DllImport(VERSION.dll)] method FMOD_Sound_GetNumSubSounds (line 2769) | [DllImport(VERSION.dll)] method FMOD_Sound_GetNumTags (line 2771) | [DllImport(VERSION.dll)] method FMOD_Sound_GetTag (line 2773) | [DllImport(VERSION.dll)] method FMOD_Sound_GetOpenState (line 2775) | [DllImport(VERSION.dll)] method FMOD_Sound_ReadData (line 2777) | [DllImport(VERSION.dll)] method FMOD_Sound_SeekData (line 2779) | [DllImport(VERSION.dll)] method FMOD_Sound_SetSoundGroup (line 2781) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSoundGroup (line 2783) | [DllImport(VERSION.dll)] method FMOD_Sound_GetNumSyncPoints (line 2785) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSyncPoint (line 2787) | [DllImport(VERSION.dll)] method FMOD_Sound_GetSyncPointInfo (line 2789) | [DllImport(VERSION.dll)] method FMOD_Sound_AddSyncPoint (line 2791) | [DllImport(VERSION.dll)] method FMOD_Sound_DeleteSyncPoint (line 2793) | [DllImport(VERSION.dll)] method FMOD_Sound_SetMode (line 2795) | [DllImport(VERSION.dll)] method FMOD_Sound_GetMode (line 2797) | [DllImport(VERSION.dll)] method FMOD_Sound_SetLoopCount (line 2799) | [DllImport(VERSION.dll)] method FMOD_Sound_GetLoopCount (line 2801) | [DllImport(VERSION.dll)] method FMOD_Sound_SetLoopPoints (line 2803) | [DllImport(VERSION.dll)] method FMOD_Sound_GetLoopPoints (line 2805) | [DllImport(VERSION.dll)] method FMOD_Sound_GetMusicNumChannels (line 2807) | [DllImport(VERSION.dll)] method FMOD_Sound_SetMusicChannelVolume (line 2809) | [DllImport(VERSION.dll)] method FMOD_Sound_GetMusicChannelVolume (line 2811) | [DllImport(VERSION.dll)] method FMOD_Sound_SetMusicSpeed (line 2813) | [DllImport(VERSION.dll)] method FMOD_Sound_GetMusicSpeed (line 2815) | [DllImport(VERSION.dll)] method FMOD_Sound_SetUserData (line 2817) | [DllImport(VERSION.dll)] method FMOD_Sound_GetUserData (line 2819) | [DllImport(VERSION.dll)] method Sound (line 2825) | public Sound(IntPtr raw) class ChannelControl (line 2837) | public class ChannelControl : HandleBase method getSystemObject (line 2839) | public RESULT getSystemObject(out System system) method stop (line 2851) | public RESULT stop() method setPaused (line 2855) | public RESULT setPaused(bool paused) method getPaused (line 2859) | public RESULT getPaused(out bool paused) method setVolume (line 2863) | public RESULT setVolume(float volume) method getVolume (line 2867) | public RESULT getVolume(out float volume) method setVolumeRamp (line 2871) | public RESULT setVolumeRamp(bool ramp) method getVolumeRamp (line 2875) | public RESULT getVolumeRamp(out bool ramp) method getAudibility (line 2879) | public RESULT getAudibility(out float audibility) method setPitch (line 2883) | public RESULT setPitch(float pitch) method getPitch (line 2887) | public RESULT getPitch(out float pitch) method setMute (line 2891) | public RESULT setMute(bool mute) method getMute (line 2895) | public RESULT getMute(out bool mute) method setReverbProperties (line 2899) | public RESULT setReverbProperties(int instance, float wet) method getReverbProperties (line 2903) | public RESULT getReverbProperties(int instance, out float wet) method setLowPassGain (line 2907) | public RESULT setLowPassGain(float gain) method getLowPassGain (line 2911) | public RESULT getLowPassGain(out float gain) method setMode (line 2915) | public RESULT setMode(MODE mode) method getMode (line 2919) | public RESULT getMode(out MODE mode) method setCallback (line 2923) | public RESULT setCallback(CHANNEL_CALLBACK callback) method isPlaying (line 2927) | public RESULT isPlaying(out bool isplaying) method setPan (line 2933) | public RESULT setPan(float pan) method setMixLevelsOutput (line 2937) | public RESULT setMixLevelsOutput(float frontleft, float frontright, fl... method setMixLevelsInput (line 2942) | public RESULT setMixLevelsInput(float[] levels, int numlevels) method setMixMatrix (line 2946) | public RESULT setMixMatrix(float[] matrix, int outchannels, int inchan... method getMixMatrix (line 2950) | public RESULT getMixMatrix(float[] matrix, out int outchannels, out in... method getDSPClock (line 2956) | public RESULT getDSPClock(out ulong dspclock, out ulong parentclock) method setDelay (line 2960) | public RESULT setDelay(ulong dspclock_start, ulong dspclock_end, bool ... method getDelay (line 2964) | public RESULT getDelay(out ulong dspclock_start, out ulong dspclock_en... method addFadePoint (line 2968) | public RESULT addFadePoint(ulong dspclock, float volume) method setFadePointRamp (line 2972) | public RESULT setFadePointRamp(ulong dspclock, float volume) method removeFadePoints (line 2976) | public RESULT removeFadePoints(ulong dspclock_start, ulong dspclock_end) method getFadePoints (line 2980) | public RESULT getFadePoints(ref uint numpoints, ulong[] point_dspclock... method getDSP (line 2986) | public RESULT getDSP(int index, out DSP dsp) method addDSP (line 2996) | public RESULT addDSP(int index, DSP dsp) method removeDSP (line 3000) | public RESULT removeDSP(DSP dsp) method getNumDSPs (line 3004) | public RESULT getNumDSPs(out int numdsps) method setDSPIndex (line 3008) | public RESULT setDSPIndex(DSP dsp, int index) method getDSPIndex (line 3012) | public RESULT getDSPIndex(DSP dsp, out int index) method overridePanDSP (line 3016) | public RESULT overridePanDSP(DSP pan) method set3DAttributes (line 3022) | public RESULT set3DAttributes(ref VECTOR pos, ref VECTOR vel, ref VECT... method get3DAttributes (line 3026) | public RESULT get3DAttributes(out VECTOR pos, out VECTOR vel, out VECT... method set3DMinMaxDistance (line 3030) | public RESULT set3DMinMaxDistance(float mindistance, float maxdistance) method get3DMinMaxDistance (line 3034) | public RESULT get3DMinMaxDistance(out float mindistance, out float max... method set3DConeSettings (line 3038) | public RESULT set3DConeSettings(float insideconeangle, float outsideco... method get3DConeSettings (line 3042) | public RESULT get3DConeSettings(out float insideconeangle, out float o... method set3DConeOrientation (line 3046) | public RESULT set3DConeOrientation(ref VECTOR orientation) method get3DConeOrientation (line 3050) | public RESULT get3DConeOrientation(out VECTOR orientation) method set3DCustomRolloff (line 3054) | public RESULT set3DCustomRolloff(ref VECTOR points, int numpoints) method get3DCustomRolloff (line 3058) | public RESULT get3DCustomRolloff(out IntPtr points, out int numpoints) method set3DOcclusion (line 3062) | public RESULT set3DOcclusion(float directocclusion, float reverbocclus... method get3DOcclusion (line 3066) | public RESULT get3DOcclusion(out float directocclusion, out float reve... method set3DSpread (line 3070) | public RESULT set3DSpread(float angle) method get3DSpread (line 3074) | public RESULT get3DSpread(out float angle) method set3DLevel (line 3078) | public RESULT set3DLevel(float level) method get3DLevel (line 3082) | public RESULT get3DLevel(out float level) method set3DDopplerLevel (line 3086) | public RESULT set3DDopplerLevel(float level) method get3DDopplerLevel (line 3090) | public RESULT get3DDopplerLevel(out float level) method set3DDistanceFilter (line 3094) | public RESULT set3DDistanceFilter(bool custom, float customLevel, floa... method get3DDistanceFilter (line 3098) | public RESULT get3DDistanceFilter(out bool custom, out float customLev... method setUserData (line 3104) | public RESULT setUserData(IntPtr userdata) method getUserData (line 3108) | public RESULT getUserData(out IntPtr userdata) method FMOD_ChannelGroup_Stop (line 3115) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetPaused (line 3117) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetPaused (line 3119) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetVolume (line 3121) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetVolumeRamp (line 3123) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetVolumeRamp (line 3125) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetAudibility (line 3127) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetPitch (line 3129) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetPitch (line 3131) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetMute (line 3133) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetMute (line 3135) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetReverbProperties (line 3137) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetReverbProperties (line 3139) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetLowPassGain (line 3141) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetLowPassGain (line 3143) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetMode (line 3145) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetMode (line 3147) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetCallback (line 3149) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_IsPlaying (line 3151) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetPan (line 3153) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetMixLevelsOutput (line 3155) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetMixLevelsInput (line 3157) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetMixMatrix (line 3159) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetMixMatrix (line 3161) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetDSPClock (line 3163) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetDelay (line 3165) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetDelay (line 3167) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_AddFadePoint (line 3169) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetFadePointRamp (line 3171) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_RemoveFadePoints (line 3173) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetFadePoints (line 3175) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DAttributes (line 3177) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DAttributes (line 3179) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DMinMaxDistance (line 3181) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DMinMaxDistance (line 3183) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DConeSettings (line 3185) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DConeSettings (line 3187) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DConeOrientation (line 3189) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DConeOrientation (line 3191) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DCustomRolloff (line 3193) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DCustomRolloff (line 3195) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DOcclusion (line 3197) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DOcclusion (line 3199) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DSpread (line 3201) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DSpread (line 3203) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DLevel (line 3205) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DLevel (line 3207) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DDopplerLevel (line 3209) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DDopplerLevel (line 3211) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Set3DDistanceFilter (line 3213) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_Get3DDistanceFilter (line 3215) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetSystemObject (line 3217) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetVolume (line 3219) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetDSP (line 3221) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_AddDSP (line 3223) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_RemoveDSP (line 3225) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetNumDSPs (line 3227) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetDSPIndex (line 3229) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetDSPIndex (line 3231) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_OverridePanDSP (line 3233) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_SetUserData (line 3235) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetUserData (line 3237) | [DllImport(VERSION.dll)] method ChannelControl (line 3244) | protected ChannelControl(IntPtr raw) class Channel (line 3256) | public class Channel : ChannelControl method setFrequency (line 3259) | public RESULT setFrequency (float frequency) method getFrequency (line 3263) | public RESULT getFrequency (out float frequency) method setPriority (line 3267) | public RESULT setPriority (int priority) method getPriority (line 3271) | public RESULT getPriority (out int priority) method setPosition (line 3275) | public RESULT setPosition (uint position, TIMEUNIT postype) method getPosition (line 3279) | public RESULT getPosition (out uint position, TIMEUNIT postype) method setChannelGroup (line 3283) | public RESULT setChannelGroup (ChannelGroup channelgroup) method getChannelGroup (line 3287) | public RESULT getChannelGroup (out ChannelGroup channelgroup) method setLoopCount (line 3297) | public RESULT setLoopCount(int loopcount) method getLoopCount (line 3301) | public RESULT getLoopCount(out int loopcount) method setLoopPoints (line 3305) | public RESULT setLoopPoints(uint loopstart, TIMEUNIT loopstarttype, ui... method getLoopPoints (line 3309) | public RESULT getLoopPoints(out uint loopstart, TIMEUNIT loopstarttype... method isVirtual (line 3315) | public RESULT isVirtual (out bool isvirtual) method getCurrentSound (line 3319) | public RESULT getCurrentSound (out Sound sound) method getIndex (line 3329) | public RESULT getIndex (out int index) method FMOD_Channel_SetFrequency (line 3336) | [DllImport(VERSION.dll)] method FMOD_Channel_GetFrequency (line 3338) | [DllImport(VERSION.dll)] method FMOD_Channel_SetPriority (line 3340) | [DllImport(VERSION.dll)] method FMOD_Channel_GetPriority (line 3342) | [DllImport(VERSION.dll)] method FMOD_Channel_SetChannelGroup (line 3344) | [DllImport(VERSION.dll)] method FMOD_Channel_GetChannelGroup (line 3346) | [DllImport(VERSION.dll)] method FMOD_Channel_IsVirtual (line 3348) | [DllImport(VERSION.dll)] method FMOD_Channel_GetCurrentSound (line 3350) | [DllImport(VERSION.dll)] method FMOD_Channel_GetIndex (line 3352) | [DllImport(VERSION.dll)] method FMOD_Channel_SetPosition (line 3354) | [DllImport(VERSION.dll)] method FMOD_Channel_GetPosition (line 3356) | [DllImport(VERSION.dll)] method FMOD_Channel_SetMode (line 3358) | [DllImport(VERSION.dll)] method FMOD_Channel_GetMode (line 3360) | [DllImport(VERSION.dll)] method FMOD_Channel_SetLoopCount (line 3362) | [DllImport(VERSION.dll)] method FMOD_Channel_GetLoopCount (line 3364) | [DllImport(VERSION.dll)] method FMOD_Channel_SetLoopPoints (line 3366) | [DllImport(VERSION.dll)] method FMOD_Channel_GetLoopPoints (line 3368) | [DllImport(VERSION.dll)] method FMOD_Channel_SetUserData (line 3370) | [DllImport(VERSION.dll)] method FMOD_Channel_GetUserData (line 3372) | [DllImport(VERSION.dll)] method Channel (line 3378) | public Channel(IntPtr raw) class ChannelGroup (line 3390) | public class ChannelGroup : ChannelControl method release (line 3392) | public RESULT release () method addGroup (line 3403) | public RESULT addGroup (ChannelGroup group, bool propaga... method getNumGroups (line 3413) | public RESULT getNumGroups (out int numgroups) method getGroup (line 3417) | public RESULT getGroup (int index, out ChannelGroup group) method getParentGroup (line 3427) | public RESULT getParentGroup (out ChannelGroup group) method getName (line 3439) | public RESULT getName (StringBuilder name, int namelen) method getNumChannels (line 3450) | public RESULT getNumChannels (out int numchannels) method getChannel (line 3454) | public RESULT getChannel (int index, out Channel channel) method FMOD_ChannelGroup_Release (line 3466) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_AddGroup (line 3468) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetNumGroups (line 3470) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetGroup (line 3472) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetParentGroup (line 3474) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetName (line 3476) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetNumChannels (line 3478) | [DllImport(VERSION.dll)] method FMOD_ChannelGroup_GetChannel (line 3480) | [DllImport(VERSION.dll)] method ChannelGroup (line 3486) | public ChannelGroup(IntPtr raw) class SoundGroup (line 3498) | public class SoundGroup : HandleBase method release (line 3500) | public RESULT release () method getSystemObject (line 3510) | public RESULT getSystemObject (out System system) method setMaxAudible (line 3522) | public RESULT setMaxAudible (int maxaudible) method getMaxAudible (line 3526) | public RESULT getMaxAudible (out int maxaudible) method setMaxAudibleBehavior (line 3530) | public RESULT setMaxAudibleBehavior (SOUNDGROUP_BEHAVIOR behavior) method getMaxAudibleBehavior (line 3534) | public RESULT getMaxAudibleBehavior (out SOUNDGROUP_BEHAVIOR behavior) method setMuteFadeSpeed (line 3538) | public RESULT setMuteFadeSpeed (float speed) method getMuteFadeSpeed (line 3542) | public RESULT getMuteFadeSpeed (out float speed) method setVolume (line 3546) | public RESULT setVolume (float volume) method getVolume (line 3550) | public RESULT getVolume (out float volume) method stop (line 3554) | public RESULT stop () method getName (line 3560) | public RESULT getName (StringBuilder name, int namelen) method getNumSounds (line 3571) | public RESULT getNumSounds (out int numsounds) method getSound (line 3575) | public RESULT getSound (int index, out Sound sound) method getNumPlaying (line 3585) | public RESULT getNumPlaying (out int numplaying) method setUserData (line 3591) | public RESULT setUserData (IntPtr userdata) method getUserData (line 3595) | public RESULT getUserData (out IntPtr userdata) method FMOD_SoundGroup_Release (line 3601) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetSystemObject (line 3603) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_SetMaxAudible (line 3605) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetMaxAudible (line 3607) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_SetMaxAudibleBehavior (line 3609) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetMaxAudibleBehavior (line 3611) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_SetMuteFadeSpeed (line 3613) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetMuteFadeSpeed (line 3615) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_SetVolume (line 3617) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetVolume (line 3619) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_Stop (line 3621) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetName (line 3623) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetNumSounds (line 3625) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetSound (line 3627) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetNumPlaying (line 3629) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_SetUserData (line 3631) | [DllImport(VERSION.dll)] method FMOD_SoundGroup_GetUserData (line 3633) | [DllImport(VERSION.dll)] method SoundGroup (line 3639) | public SoundGroup(IntPtr raw) class DSP (line 3651) | public class DSP : HandleBase method release (line 3653) | public RESULT release () method getSystemObject (line 3662) | public RESULT getSystemObject (out System system) method addInput (line 3674) | public RESULT addInput(DSP target, out DSPConnection connection, DSPCO... method disconnectFrom (line 3684) | public RESULT disconnectFrom (DSP target, DSPConnection con... method disconnectAll (line 3688) | public RESULT disconnectAll (bool inputs, bool outputs) method getNumInputs (line 3692) | public RESULT getNumInputs (out int numinputs) method getNumOutputs (line 3696) | public RESULT getNumOutputs (out int numoutputs) method getInput (line 3700) | public RESULT getInput (int index, out DSP input, out... method getOutput (line 3713) | public RESULT getOutput (int index, out DSP output, ou... method setActive (line 3728) | public RESULT setActive (bool active) method getActive (line 3732) | public RESULT getActive (out bool active) method setBypass (line 3736) | public RESULT setBypass(bool bypass) method getBypass (line 3740) | public RESULT getBypass(out bool bypass) method setWetDryMix (line 3744) | public RESULT setWetDryMix(float prewet, float postwet, float dry) method getWetDryMix (line 3748) | public RESULT getWetDryMix(out float prewet, out float postwet, out fl... method setChannelFormat (line 3752) | public RESULT setChannelFormat(CHANNELMASK channelmask, int numchannel... method getChannelFormat (line 3756) | public RESULT getChannelFormat(out CHANNELMASK channelmask, out int nu... method getOutputChannelFormat (line 3760) | public RESULT getOutputChannelFormat(CHANNELMASK inmask, int inchannel... method reset (line 3764) | public RESULT reset () method setParameterFloat (line 3770) | public RESULT setParameterFloat(int index, float value) method setParameterInt (line 3774) | public RESULT setParameterInt(int index, int value) method setParameterBool (line 3778) | public RESULT setParameterBool(int index, bool value) method setParameterData (line 3782) | public RESULT setParameterData(int index, byte[] data) method getParameterFloat (line 3786) | public RESULT getParameterFloat(int index, out float value) method getParameterInt (line 3791) | public RESULT getParameterInt(int index, out int value) method getParameterBool (line 3796) | public RESULT getParameterBool(int index, out bool value) method getParameterData (line 3800) | public RESULT getParameterData(int index, out IntPtr data, out uint le... method getNumParameters (line 3804) | public RESULT getNumParameters (out int numparams) method getParameterInfo (line 3808) | public RESULT getParameterInfo (int index, out DSP_PARAMETER_... method getDataParameterIndex (line 3822) | public RESULT getDataParameterIndex(int datatype, out int index) method showConfigDialog (line 3826) | public RESULT showConfigDialog (IntPtr hwnd, bool show) method getInfo (line 3832) | public RESULT getInfo (StringBuilder name, out uint ... method getType (line 3840) | public RESULT getType (out DSP_TYPE type) method getIdle (line 3844) | public RESULT getIdle (out bool idle) method setUserData (line 3850) | public RESULT setUserData (IntPtr userdata) method getUserData (line 3854) | public RESULT getUserData (out IntPtr userdata) method setMeteringEnabled (line 3860) | public RESULT setMeteringEnabled(bool inputEnabled, bool outputEnabled) method getMeteringEnabled (line 3864) | public RESULT getMeteringEnabled(out bool inputEnabled, out bool outpu... method getMeteringInfo (line 3869) | public RESULT getMeteringInfo(DSP_METERING_INFO inputInfo, DSP_METERIN... method FMOD_DSP_Release (line 3876) | [DllImport(VERSION.dll)] method FMOD_DSP_GetSystemObject (line 3878) | [DllImport(VERSION.dll)] method FMOD_DSP_AddInput (line 3880) | [DllImport(VERSION.dll)] method FMOD_DSP_DisconnectFrom (line 3882) | [DllImport(VERSION.dll)] method FMOD_DSP_DisconnectAll (line 3884) | [DllImport(VERSION.dll)] method FMOD_DSP_GetNumInputs (line 3886) | [DllImport(VERSION.dll)] method FMOD_DSP_GetNumOutputs (line 3888) | [DllImport(VERSION.dll)] method FMOD_DSP_GetInput (line 3890) | [DllImport(VERSION.dll)] method FMOD_DSP_GetOutput (line 3892) | [DllImport(VERSION.dll)] method FMOD_DSP_SetActive (line 3894) | [DllImport(VERSION.dll)] method FMOD_DSP_GetActive (line 3896) | [DllImport(VERSION.dll)] method FMOD_DSP_SetBypass (line 3898) | [DllImport(VERSION.dll)] method FMOD_DSP_GetBypass (line 3900) | [DllImport(VERSION.dll)] method FMOD_DSP_SetWetDryMix (line 3902) | [DllImport(VERSION.dll)] method FMOD_DSP_GetWetDryMix (line 3904) | [DllImport(VERSION.dll)] method FMOD_DSP_SetChannelFormat (line 3906) | [DllImport(VERSION.dll)] method FMOD_DSP_GetChannelFormat (line 3908) | [DllImport(VERSION.dll)] method FMOD_DSP_GetOutputChannelFormat (line 3910) | [DllImport(VERSION.dll)] method FMOD_DSP_Reset (line 3912) | [DllImport(VERSION.dll)] method FMOD_DSP_SetParameterFloat (line 3914) | [DllImport(VERSION.dll)] method FMOD_DSP_SetParameterInt (line 3916) | [DllImport(VERSION.dll)] method FMOD_DSP_SetParameterBool (line 3918) | [DllImport(VERSION.dll)] method FMOD_DSP_SetParameterData (line 3920) | [DllImport(VERSION.dll)] method FMOD_DSP_GetParameterFloat (line 3922) | [DllImport(VERSION.dll)] method FMOD_DSP_GetParameterInt (line 3924) | [DllImport(VERSION.dll)] method FMOD_DSP_GetParameterBool (line 3926) | [DllImport(VERSION.dll)] method FMOD_DSP_GetParameterData (line 3928) | [DllImport(VERSION.dll)] method FMOD_DSP_GetNumParameters (line 3930) | [DllImport(VERSION.dll)] method FMOD_DSP_GetParameterInfo (line 3932) | [DllImport(VERSION.dll)] method FMOD_DSP_GetDataParameterIndex (line 3934) | [DllImport(VERSION.dll)] method FMOD_DSP_ShowConfigDialog (line 3936) | [DllImport(VERSION.dll)] method FMOD_DSP_GetInfo (line 3938) | [DllImport(VERSION.dll)] method FMOD_DSP_GetType (line 3940) | [DllImport(VERSION.dll)] method FMOD_DSP_GetIdle (line 3942) | [DllImport(VERSION.dll)] method FMOD_DSP_SetUserData (line 3944) | [DllImport(VERSION.dll)] method FMOD_DSP_GetUserData (line 3946) | [DllImport(VERSION.dll)] method FMOD_DSP_SetMeteringEnabled (line 3948) | [DllImport(VERSION.dll)] method FMOD_DSP_GetMeteringEnabled (line 3950) | [DllImport(VERSION.dll)] method FMOD_DSP_GetMeteringInfo (line 3952) | [DllImport(VERSION.dll)] method DSP (line 3958) | public DSP(IntPtr raw) class DSPConnection (line 3970) | public class DSPConnection : HandleBase method getInput (line 3972) | public RESULT getInput (out DSP input) method getOutput (line 3982) | public RESULT getOutput (out DSP output) method setMix (line 3992) | public RESULT setMix (float volume) method getMix (line 3996) | public RESULT getMix (out float volume) method setMixMatrix (line 4000) | public RESULT setMixMatrix(float[] matrix, int outchannels, int inchan... method getMixMatrix (line 4004) | public RESULT getMixMatrix(float[] matrix, out int outchannels, out in... method getType (line 4008) | public RESULT getType(out DSPCONNECTION_TYPE type) method setUserData (line 4014) | public RESULT setUserData(IntPtr userdata) method getUserData (line 4018) | public RESULT getUserData(out IntPtr userdata) method FMOD_DSPConnection_GetInput (line 4024) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_GetOutput (line 4026) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_SetMix (line 4028) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_GetMix (line 4030) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_SetMixMatrix (line 4032) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_GetMixMatrix (line 4034) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_GetType (line 4036) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_SetUserData (line 4038) | [DllImport(VERSION.dll)] method FMOD_DSPConnection_GetUserData (line 4040) | [DllImport(VERSION.dll)] method DSPConnection (line 4046) | public DSPConnection(IntPtr raw) class Geometry (line 4057) | public class Geometry : HandleBase method release (line 4059) | public RESULT release () method addPolygon (line 4070) | public RESULT addPolygon (float directocclusion, float reve... method getNumPolygons (line 4074) | public RESULT getNumPolygons (out int numpolygons) method getMaxPolygons (line 4078) | public RESULT getMaxPolygons (out int maxpolygons, out int maxv... method getPolygonNumVertices (line 4082) | public RESULT getPolygonNumVertices (int index, out int numvertices) method setPolygonVertex (line 4086) | public RESULT setPolygonVertex (int index, int vertexindex, ref V... method getPolygonVertex (line 4090) | public RESULT getPolygonVertex (int index, int vertexindex, out V... method setPolygonAttributes (line 4094) | public RESULT setPolygonAttributes (int index, float directocclusion,... method getPolygonAttributes (line 4098) | public RESULT getPolygonAttributes (int index, out float directocclus... method setActive (line 4104) | public RESULT setActive (bool active) method getActive (line 4108) | public RESULT getActive (out bool active) method setRotation (line 4112) | public RESULT setRotation (ref VECTOR forward, ref VECTOR up) method getRotation (line 4116) | public RESULT getRotation (out VECTOR forward, out VECTOR up) method setPosition (line 4120) | public RESULT setPosition (ref VECTOR position) method getPosition (line 4124) | public RESULT getPosition (out VECTOR position) method setScale (line 4128) | public RESULT setScale (ref VECTOR scale) method getScale (line 4132) | public RESULT getScale (out VECTOR scale) method save (line 4136) | public RESULT save (IntPtr data, out int datasize) method setUserData (line 4142) | public RESULT setUserData (IntPtr userdata) method getUserData (line 4146) | public RESULT getUserData (out IntPtr userdata) method FMOD_Geometry_Release (line 4152) | [DllImport(VERSION.dll)] method FMOD_Geometry_AddPolygon (line 4154) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetNumPolygons (line 4156) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetMaxPolygons (line 4158) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetPolygonNumVertices (line 4160) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetPolygonVertex (line 4162) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetPolygonVertex (line 4164) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetPolygonAttributes (line 4166) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetPolygonAttributes (line 4168) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetActive (line 4170) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetActive (line 4172) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetRotation (line 4174) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetRotation (line 4176) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetPosition (line 4178) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetPosition (line 4180) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetScale (line 4182) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetScale (line 4184) | [DllImport(VERSION.dll)] method FMOD_Geometry_Save (line 4186) | [DllImport(VERSION.dll)] method FMOD_Geometry_SetUserData (line 4188) | [DllImport(VERSION.dll)] method FMOD_Geometry_GetUserData (line 4190) | [DllImport(VERSION.dll)] method Geometry (line 4196) | public Geometry(IntPtr raw) class Reverb3D (line 4208) | public class Reverb3D : HandleBase method release (line 4210) | public RESULT release() method set3DAttributes (line 4221) | public RESULT set3DAttributes(ref VECTOR position, float mindistance, ... method get3DAttributes (line 4225) | public RESULT get3DAttributes(ref VECTOR position, ref float mindistan... method setProperties (line 4229) | public RESULT setProperties(ref REVERB_PROPERTIES properties) method getProperties (line 4233) | public RESULT getProperties(ref REVERB_PROPERTIES properties) method setActive (line 4237) | public RESULT setActive(bool active) method getActive (line 4241) | public RESULT getActive(out bool active) method setUserData (line 4247) | public RESULT setUserData(IntPtr userdata) method getUserData (line 4251) | public RESULT getUserData(out IntPtr userdata) method FMOD_Reverb3D_Release (line 4257) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_Set3DAttributes (line 4259) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_Get3DAttributes (line 4261) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_SetProperties (line 4263) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_GetProperties (line 4265) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_SetActive (line 4267) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_GetActive (line 4269) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_SetUserData (line 4271) | [DllImport(VERSION.dll)] method FMOD_Reverb3D_GetUserData (line 4273) | [DllImport(VERSION.dll)] method Reverb3D (line 4279) | public Reverb3D(IntPtr raw) class StringMarshalHelper (line 4287) | class StringMarshalHelper method NativeToBuilder (line 4289) | static internal void NativeToBuilder(StringBuilder builder, IntPtr nat... FILE: AssetStudioUtility/FMOD Studio API/fmod_dsp.cs type DSP_BUFFER_ARRAY (line 33) | [StructLayout(LayoutKind.Sequential)] type DSP_PROCESS_OPERATION (line 56) | public enum DSP_PROCESS_OPERATION type COMPLEX (line 75) | [StructLayout(LayoutKind.Sequential)] type DSP_PAN_SURROUND_FLAGS (line 95) | public enum DSP_PAN_SURROUND_FLAGS type DSP_TYPE (line 153) | public enum DSP_TYPE : int type DSP_PARAMETER_TYPE (line 205) | public enum DSP_PARAMETER_TYPE type DSP_PARAMETER_FLOAT_MAPPING_TYPE (line 227) | public enum DSP_PARAMETER_FLOAT_MAPPING_TYPE type DSP_PARAMETER_FLOAT_MAPPING_PIECEWISE_LINEAR (line 249) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_FLOAT_MAPPING (line 272) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DESC_FLOAT (line 298) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DESC_INT (line 325) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DESC_BOOL (line 353) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DESC_DATA (line 379) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DESC_UNION (line 407) | [StructLayout(LayoutKind.Explicit)] type DSP_PARAMETER_DESC (line 420) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_DATA_TYPE (line 449) | public enum DSP_PARAMETER_DATA_TYPE type DSP_PARAMETER_OVERALLGAIN (line 477) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_3DATTRIBUTES (line 502) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_3DATTRIBUTES_MULTI (line 526) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_SIDECHAIN (line 551) | [StructLayout(LayoutKind.Sequential)] type DSP_PARAMETER_FFT (line 582) | [StructLayout(LayoutKind.Sequential)] type DSP_DESCRIPTION (line 650) | [StructLayout(LayoutKind.Sequential)] type DSP_STATE_DFTCALLBACKS (line 698) | [StructLayout(LayoutKind.Sequential)] type DSP_STATE_PAN_CALLBACKS (line 719) | [StructLayout(LayoutKind.Sequential)] type DSP_STATE_SYSTEMCALLBACKS (line 746) | [StructLayout(LayoutKind.Sequential)] type DSP_STATE (line 777) | [StructLayout(LayoutKind.Sequential)] class DSP_METERING_INFO (line 804) | [StructLayout(LayoutKind.Sequential)] type DSP_OSCILLATOR (line 840) | public enum DSP_OSCILLATOR type DSP_LOWPASS (line 861) | public enum DSP_LOWPASS type DSP_ITLOWPASS (line 889) | public enum DSP_ITLOWPASS type DSP_HIGHPASS (line 910) | public enum DSP_HIGHPASS type DSP_ECHO (line 933) | public enum DSP_ECHO type DSP_DELAY (line 959) | public enum DSP_DELAY type DSP_FLANGE (line 999) | public enum DSP_FLANGE type DSP_TREMOLO (line 1027) | public enum DSP_TREMOLO type DSP_DISTORTION (line 1054) | public enum DSP_DISTORTION type DSP_NORMALIZE (line 1080) | public enum DSP_NORMALIZE type DSP_LIMITER (line 1102) | public enum DSP_LIMITER type DSP_PARAMEQ (line 1129) | public enum DSP_PARAMEQ type DSP_PITCHSHIFT (line 1166) | public enum DSP_PITCHSHIFT type DSP_CHORUS (line 1193) | public enum DSP_CHORUS type DSP_ITECHO (line 1223) | public enum DSP_ITECHO type DSP_COMPRESSOR (line 1256) | public enum DSP_COMPRESSOR type DSP_SFXREVERB (line 1287) | public enum DSP_SFXREVERB type DSP_LOWPASS_SIMPLE (line 1320) | public enum DSP_LOWPASS_SIMPLE type DSP_SEND (line 1342) | public enum DSP_SEND type DSP_RETURN (line 1363) | public enum DSP_RETURN type DSP_HIGHPASS_SIMPLE (line 1386) | public enum DSP_HIGHPASS_SIMPLE type DSP_PAN_SURROUND_FROM_STEREO_MODE_TYPE (line 1404) | public enum DSP_PAN_SURROUND_FROM_STEREO_MODE_TYPE type DSP_PAN_MODE_TYPE (line 1423) | public enum DSP_PAN_MODE_TYPE type DSP_PAN_3D_ROLLOFF_TYPE (line 1443) | public enum DSP_PAN_3D_ROLLOFF_TYPE type DSP_PAN_3D_EXTENT_MODE_TYPE (line 1465) | public enum DSP_PAN_3D_EXTENT_MODE_TYPE type DSP_PAN (line 1491) | public enum DSP_PAN type DSP_THREE_EQ_CROSSOVERSLOPE_TYPE (line 1529) | public enum DSP_THREE_EQ_CROSSOVERSLOPE_TYPE type DSP_THREE_EQ (line 1554) | public enum DSP_THREE_EQ type DSP_FFT_WINDOW (line 1601) | public enum DSP_FFT_WINDOW type DSP_FFT (line 1633) | public enum DSP_FFT type DSP_ENVELOPEFOLLOWER (line 1660) | public enum DSP_ENVELOPEFOLLOWER type DSP_CONVOLUTION_REVERB (line 1686) | public enum DSP_CONVOLUTION_REVERB type DSP_CHANNELMIX_OUTPUT (line 1708) | public enum DSP_CHANNELMIX_OUTPUT type DSP_CHANNELMIX (line 1746) | public enum DSP_CHANNELMIX type DSP_TRANSCEIVER_SPEAKERMODE (line 1807) | public enum DSP_TRANSCEIVER_SPEAKERMODE type DSP_TRANSCEIVER (line 1845) | public enum DSP_TRANSCEIVER FILE: AssetStudioUtility/FMOD Studio API/fmod_errors.cs class Error (line 11) | public class Error method String (line 13) | public static string String(FMOD.RESULT errcode) FILE: AssetStudioUtility/ImageExtensions.cs class ImageExtensions (line 10) | public static class ImageExtensions method WriteToStream (line 12) | public static void WriteToStream(this Image image, Stream stream, Imag... method ConvertToStream (line 39) | public static MemoryStream ConvertToStream(this Image image, ImageForm... method ConvertToBytes (line 46) | public static byte[] ConvertToBytes(this Image image) ... FILE: AssetStudioUtility/ImageFormat.cs type ImageFormat (line 3) | public enum ImageFormat FILE: AssetStudioUtility/ModelConverter.cs class ModelConverter (line 8) | public class ModelConverter : IImported method ModelConverter (line 26) | public ModelConverter(GameObject m_GameObject, ImageFormat imageFormat... method ModelConverter (line 51) | public ModelConverter(string rootName, List m_GameObjects,... method ModelConverter (line 81) | public ModelConverter(Animator m_Animator, ImageFormat imageFormat, An... method InitWithAnimator (line 99) | private void InitWithAnimator(Animator m_Animator) method InitWithGameObject (line 108) | private void InitWithGameObject(GameObject m_GameObject, bool hasTrans... method ConvertMeshRenderer (line 147) | private void ConvertMeshRenderer(Transform m_Transform) method CollectAnimationClip (line 183) | private void CollectAnimationClip(Animator m_Animator) method ConvertTransform (line 219) | private ImportedFrame ConvertTransform(Transform trans) method CreateFrame (line 229) | private static ImportedFrame CreateFrame(string name, Vector3 t, Quate... method SetFrame (line 237) | private static void SetFrame(ImportedFrame frame, Vector3 t, Quaternio... method ConvertTransforms (line 244) | private void ConvertTransforms(Transform trans, ImportedFrame parent) method ConvertMeshRenderer (line 262) | private void ConvertMeshRenderer(Renderer meshR) method GetMesh (line 575) | private static Mesh GetMesh(Renderer meshR) method GetTransformPath (line 599) | private string GetTransformPath(Transform transform) method FixBonePath (line 608) | private string FixBonePath(AnimationClip m_AnimationClip, string path) method FixBonePath (line 617) | private string FixBonePath(string path) method GetTransformPathByFather (line 623) | private static string GetTransformPathByFather(Transform transform) method ConvertMaterial (line 634) | private ImportedMaterial ConvertMaterial(Material mat) method ConvertTexture2D (line 751) | private void ConvertTexture2D(Texture2D m_Texture2D, string name) method ConvertAnimations (line 770) | private void ConvertAnimations() method ReadCurveData (line 923) | private void ReadCurveData(ImportedKeyframedAnimation iAnim, Animation... method GetPathFromHash (line 1002) | private string GetPathFromHash(uint hash) method CreateBonePathHash (line 1016) | private void CreateBonePathHash(Transform m_Transform) method DeoptimizeTransformHierarchy (line 1039) | private void DeoptimizeTransformHierarchy() method GetPathByChannelName (line 1084) | private string GetPathByChannelName(string channelName) method GetChannelNameFromHash (line 1099) | private string GetChannelNameFromHash(uint attribute) FILE: AssetStudioUtility/ModelExporter.cs class ModelExporter (line 3) | public static class ModelExporter method ExportFbx (line 5) | public static void ExportFbx(string path, IImported imported, bool eul... FILE: AssetStudioUtility/MonoBehaviourConverter.cs class MonoBehaviourConverter (line 5) | public static class MonoBehaviourConverter method ConvertToTypeTree (line 7) | public static TypeTree ConvertToTypeTree(this MonoBehaviour m_MonoBeha... FILE: AssetStudioUtility/MyAssemblyResolver.cs class MyAssemblyResolver (line 5) | public class MyAssemblyResolver : DefaultAssemblyResolver method Register (line 7) | public void Register(AssemblyDefinition assembly) FILE: AssetStudioUtility/SerializedTypeHelper.cs class SerializedTypeHelper (line 5) | public class SerializedTypeHelper method SerializedTypeHelper (line 9) | public SerializedTypeHelper(int[] version) method AddMonoBehaviour (line 14) | public void AddMonoBehaviour(List nodes, int indent) method AddPPtr (line 23) | public void AddPPtr(List nodes, string type, string name... method AddString (line 37) | public void AddString(List nodes, string name, int indent) method AddArray (line 45) | public void AddArray(List nodes, int indent) method AddAnimationCurve (line 51) | public void AddAnimationCurve(List nodes, string name, i... method AddGradient (line 75) | public void AddGradient(List nodes, string name, int ind... method AddGUIStyle (line 124) | public void AddGUIStyle(List nodes, string name, int ind... method AddGUIStyleState (line 184) | public void AddGUIStyleState(List nodes, string name, in... method AddVector2f (line 191) | public void AddVector2f(List nodes, string name, int ind... method AddRectOffset (line 198) | public void AddRectOffset(List nodes, string name, int i... method AddColorRGBA (line 207) | public void AddColorRGBA(List nodes, string name, int in... method AddColor32 (line 216) | public void AddColor32(List nodes, string name, int indent) method AddMatrix4x4 (line 222) | public void AddMatrix4x4(List nodes, string name, int in... method AddSphericalHarmonicsL2 (line 243) | public void AddSphericalHarmonicsL2(List nodes, string n... method AddPropertyName (line 275) | public void AddPropertyName(List nodes, string name, int... FILE: AssetStudioUtility/ShaderConverter.cs class ShaderConverter (line 11) | public static class ShaderConverter method Convert (line 13) | public static string Convert(this Shader shader) method ConvertSerializedShader (line 35) | private static string ConvertSerializedShader(Shader shader) method ConvertSerializedShader (line 62) | private static string ConvertSerializedShader(SerializedShader m_Parse... method ConvertSerializedSubShader (line 88) | private static string ConvertSerializedSubShader(SerializedSubShader m... method ConvertSerializedPass (line 107) | private static string ConvertSerializedPass(SerializedPass m_Passe, Sh... method ConvertSerializedSubPrograms (line 188) | private static string ConvertSerializedSubPrograms(SerializedSubProgra... method ConvertSerializedShaderState (line 223) | private static string ConvertSerializedShaderState(SerializedShaderSta... method ConvertSerializedStencilOp (line 424) | private static string ConvertSerializedStencilOp(SerializedStencilOp s... method ConvertStencilOp (line 434) | private static string ConvertStencilOp(SerializedShaderFloatValue op) method ConvertStencilComp (line 458) | private static string ConvertStencilComp(SerializedShaderFloatValue comp) method ConvertSerializedShaderRTBlendState (line 484) | private static string ConvertSerializedShaderRTBlendState(SerializedSh... method ConvertBlendOp (line 558) | private static string ConvertBlendOp(SerializedShaderFloatValue op) method ConvertBlendFactor (line 608) | private static string ConvertBlendFactor(SerializedShaderFloatValue fa... method ConvertSerializedTagMap (line 638) | private static string ConvertSerializedTagMap(SerializedTagMap m_Tags,... method ConvertSerializedProperties (line 654) | private static string ConvertSerializedProperties(SerializedProperties... method ConvertSerializedProperty (line 666) | private static string ConvertSerializedProperty(SerializedProperty m_P... method CheckGpuProgramUsable (line 734) | private static bool CheckGpuProgramUsable(ShaderCompilerPlatform platf... method GetPlatformString (line 802) | public static string GetPlatformString(ShaderCompilerPlatform platform) class ShaderSubProgramEntry (line 868) | public class ShaderSubProgramEntry method ShaderSubProgramEntry (line 874) | public ShaderSubProgramEntry(BinaryReader reader, int[] version) class ShaderProgram (line 885) | public class ShaderProgram method ShaderProgram (line 890) | public ShaderProgram(BinaryReader reader, int[] version) method Read (line 901) | public void Read(BinaryReader reader, int segment) method Export (line 914) | public string Export(string shader) class ShaderSubProgram (line 926) | public class ShaderSubProgram method ShaderSubProgram (line 934) | public ShaderSubProgram(BinaryReader reader) method Export (line 973) | public string Export() FILE: AssetStudioUtility/Smolv/OpData.cs type OpData (line 3) | public struct OpData method OpData (line 5) | public OpData(byte hasResult, byte hasType, sbyte deltaFromResult, byt... FILE: AssetStudioUtility/Smolv/SmolvDecoder.cs class SmolvDecoder (line 7) | public static class SmolvDecoder method GetDecodedBufferSize (line 9) | public static int GetDecodedBufferSize(byte[] data) method GetDecodedBufferSize (line 25) | public static int GetDecodedBufferSize(Stream stream) method Decode (line 47) | public static byte[] Decode(byte[] data) method Decode (line 70) | public static bool Decode(byte[] data, byte[] output) method Decode (line 93) | public static bool Decode(byte[] data, Stream outputStream) method Decode (line 105) | public static bool Decode(Stream inputStream, int inputSize, Stream ou... method CheckSmolHeader (line 264) | private static bool CheckSmolHeader(byte[] data) method CheckGenericHeader (line 274) | private static bool CheckGenericHeader(byte[] data, uint expectedMagic) method ReadVarint (line 301) | private static bool ReadVarint(BinaryReader input, out uint value) method ReadLengthOp (line 321) | private static bool ReadLengthOp(BinaryReader input, out uint len, out... method RemapOp (line 342) | private static SpvOp RemapOp(SpvOp op) method DecodeLen (line 425) | private static uint DecodeLen(SpvOp op, uint len) method DecorationExtraOps (line 449) | private static int DecorationExtraOps(int dec) method ZigDecode (line 466) | private static int ZigDecode(uint u) FILE: AssetStudioUtility/Smolv/SpvOp.cs type SpvOp (line 3) | public enum SpvOp class SpvOpExtensions (line 317) | public static class SpvOpExtensions method OpHasResult (line 319) | public static bool OpHasResult(this SpvOp _this) method OpHasType (line 328) | public static bool OpHasType(this SpvOp _this) method OpDeltaFromResult (line 337) | public static int OpDeltaFromResult(this SpvOp _this) method OpVarRest (line 346) | public static bool OpVarRest(this SpvOp _this) method OpDebugInfo (line 355) | public static bool OpDebugInfo(this SpvOp _this) FILE: AssetStudioUtility/SpirVShaderConverter.cs class SpirVShaderConverter (line 9) | public static class SpirVShaderConverter method Convert (line 11) | public static string Convert(byte[] m_ProgramCode) method ExportSnippet (line 50) | private static string ExportSnippet(Stream stream, int offset, int size) FILE: AssetStudioUtility/SpriteHelper.cs class SpriteHelper (line 14) | public static class SpriteHelper method GetImage (line 16) | public static Image GetImage(this Sprite m_Sprite) method CutImage (line 35) | private static Image CutImage(Sprite m_Sprite, Texture2D m_Tex... method GetTriangles (line 120) | private static Vector2[][] GetTriangles(SpriteRenderData m_RD) FILE: AssetStudioUtility/Texture2DConverter.cs class Texture2DConverter (line 7) | public class Texture2DConverter method Texture2DConverter (line 17) | public Texture2DConverter(Texture2D m_Texture2D) method DecodeTexture2D (line 28) | public bool DecodeTexture2D(byte[] bytes) method SwapBytesForXbox (line 216) | private void SwapBytesForXbox(byte[] image_data) method DecodeAlpha8 (line 229) | private bool DecodeAlpha8(byte[] image_data, byte[] buff) method DecodeARGB4444 (line 241) | private bool DecodeARGB4444(byte[] image_data, byte[] buff) method DecodeRGB24 (line 259) | private bool DecodeRGB24(byte[] image_data, byte[] buff) method DecodeRGBA32 (line 272) | private bool DecodeRGBA32(byte[] image_data, byte[] buff) method DecodeARGB32 (line 284) | private bool DecodeARGB32(byte[] image_data, byte[] buff) method DecodeRGB565 (line 296) | private bool DecodeRGB565(byte[] image_data, byte[] buff) method DecodeR16 (line 310) | private bool DecodeR16(byte[] image_data, byte[] buff) method DecodeDXT1 (line 323) | private bool DecodeDXT1(byte[] image_data, byte[] buff) method DecodeDXT5 (line 328) | private bool DecodeDXT5(byte[] image_data, byte[] buff) method DecodeRGBA4444 (line 333) | private bool DecodeRGBA4444(byte[] image_data, byte[] buff) method DecodeBGRA32 (line 351) | private bool DecodeBGRA32(byte[] image_data, byte[] buff) method DecodeRHalf (line 363) | private bool DecodeRHalf(byte[] image_data, byte[] buff) method DecodeRGHalf (line 375) | private bool DecodeRGHalf(byte[] image_data, byte[] buff) method DecodeRGBAHalf (line 387) | private bool DecodeRGBAHalf(byte[] image_data, byte[] buff) method DecodeRFloat (line 399) | private bool DecodeRFloat(byte[] image_data, byte[] buff) method DecodeRGFloat (line 411) | private bool DecodeRGFloat(byte[] image_data, byte[] buff) method DecodeRGBAFloat (line 423) | private bool DecodeRGBAFloat(byte[] image_data, byte[] buff) method ClampByte (line 435) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method DecodeYUY2 (line 441) | private bool DecodeYUY2(byte[] image_data, byte[] buff) method DecodeRGB9e5Float (line 471) | private bool DecodeRGB9e5Float(byte[] image_data, byte[] buff) method DecodeBC4 (line 489) | private bool DecodeBC4(byte[] image_data, byte[] buff) method DecodeBC5 (line 494) | private bool DecodeBC5(byte[] image_data, byte[] buff) method DecodeBC6H (line 499) | private bool DecodeBC6H(byte[] image_data, byte[] buff) method DecodeBC7 (line 504) | private bool DecodeBC7(byte[] image_data, byte[] buff) method DecodeDXT1Crunched (line 509) | private bool DecodeDXT1Crunched(byte[] image_data, byte[] buff) method DecodeDXT5Crunched (line 521) | private bool DecodeDXT5Crunched(byte[] image_data, byte[] buff) method DecodePVRTC (line 533) | private bool DecodePVRTC(byte[] image_data, byte[] buff, bool is2bpp) method DecodeETC1 (line 538) | private bool DecodeETC1(byte[] image_data, byte[] buff) method DecodeATCRGB4 (line 543) | private bool DecodeATCRGB4(byte[] image_data, byte[] buff) method DecodeATCRGBA8 (line 548) | private bool DecodeATCRGBA8(byte[] image_data, byte[] buff) method DecodeEACR (line 553) | private bool DecodeEACR(byte[] image_data, byte[] buff) method DecodeEACRSigned (line 558) | private bool DecodeEACRSigned(byte[] image_data, byte[] buff) method DecodeEACRG (line 563) | private bool DecodeEACRG(byte[] image_data, byte[] buff) method DecodeEACRGSigned (line 568) | private bool DecodeEACRGSigned(byte[] image_data, byte[] buff) method DecodeETC2 (line 573) | private bool DecodeETC2(byte[] image_data, byte[] buff) method DecodeETC2A1 (line 578) | private bool DecodeETC2A1(byte[] image_data, byte[] buff) method DecodeETC2A8 (line 583) | private bool DecodeETC2A8(byte[] image_data, byte[] buff) method DecodeASTC (line 588) | private bool DecodeASTC(byte[] image_data, byte[] buff, int blocksize) method DecodeRG16 (line 593) | private bool DecodeRG16(byte[] image_data, byte[] buff) method DecodeR8 (line 606) | private bool DecodeR8(byte[] image_data, byte[] buff) method DecodeETC1Crunched (line 619) | private bool DecodeETC1Crunched(byte[] image_data, byte[] buff) method DecodeETC2A8Crunched (line 631) | private bool DecodeETC2A8Crunched(byte[] image_data, byte[] buff) method DownScaleFrom16BitTo8Bit (line 643) | [MethodImpl(MethodImplOptions.AggressiveInlining)] method DecodeRG32 (line 649) | private bool DecodeRG32(byte[] image_data, byte[] buff) method DecodeRGB48 (line 661) | private bool DecodeRGB48(byte[] image_data, byte[] buff) method DecodeRGBA64 (line 674) | private bool DecodeRGBA64(byte[] image_data, byte[] buff) method UnpackCrunch (line 686) | private bool UnpackCrunch(byte[] image_data, out byte[] result) FILE: AssetStudioUtility/Texture2DExtensions.cs class Texture2DExtensions (line 8) | public static class Texture2DExtensions method ConvertToImage (line 10) | public static Image ConvertToImage(this Texture2D m_Texture2D,... method ConvertToStream (line 33) | public static MemoryStream ConvertToStream(this Texture2D m_Texture2D,... FILE: AssetStudioUtility/TypeDefinitionConverter.cs class TypeDefinitionConverter (line 10) | public class TypeDefinitionConverter method TypeDefinitionConverter (line 17) | public TypeDefinitionConverter(TypeDefinition typeDef, SerializedTypeH... method ConvertToTypeTreeNodes (line 25) | public List ConvertToTypeTreeNodes() method WillUnitySerialize (line 67) | private bool WillUnitySerialize(FieldDefinition fieldDefinition) method IsHiddenByParentClass (line 91) | private static bool IsHiddenByParentClass(IEnumerable p... method FilteredFields (line 96) | private IEnumerable FilteredFields() method ResolveGenericFieldReference (line 104) | private FieldReference ResolveGenericFieldReference(FieldReference fie... method ResolveDeclaringType (line 110) | private TypeReference ResolveDeclaringType(TypeReference declaringType) method ProcessingFieldRef (line 125) | private List ProcessingFieldRef(FieldReference fieldDef) method IsStruct (line 131) | private static bool IsStruct(TypeReference typeRef) method IsEnum (line 136) | private static bool IsEnum(TypeReference typeRef) method RequiresAlignment (line 141) | private static bool RequiresAlignment(TypeReference typeRef) method IsSystemString (line 157) | private static bool IsSystemString(TypeReference typeRef) method TypeRefToTypeTreeNodes (line 162) | private List TypeRefToTypeTreeNodes(TypeReference typeRe... FILE: AssetStudioUtility/Unity.CecilTools/CecilUtils.cs class CecilUtils (line 13) | public static class CecilUtils method FindInTypeExplicitImplementationFor (line 15) | public static MethodDefinition FindInTypeExplicitImplementationFor(Met... method AllInterfacesImplementedBy (line 20) | public static IEnumerable AllInterfacesImplementedBy(T... method TypeAndBaseTypesOf (line 25) | public static IEnumerable TypeAndBaseTypesOf(TypeRefer... method BaseTypesOf (line 35) | public static IEnumerable BaseTypesOf(TypeReference ty... method IsGenericList (line 40) | public static bool IsGenericList(TypeReference type) method IsGenericDictionary (line 45) | public static bool IsGenericDictionary(TypeReference type) method ElementTypeOfCollection (line 53) | public static TypeReference ElementTypeOfCollection(TypeReference type) FILE: AssetStudioUtility/Unity.CecilTools/ElementType.cs class ElementType (line 10) | static public class ElementType method For (line 12) | public static TypeReference For(TypeReference byRefType) FILE: AssetStudioUtility/Unity.CecilTools/Extensions/MethodDefinitionExtensions.cs class MethodDefinitionExtensions (line 9) | static class MethodDefinitionExtensions method SameAs (line 11) | public static bool SameAs(this MethodDefinition self, MethodDefinition... method PropertyName (line 17) | public static string PropertyName(this MethodDefinition self) method IsConversionOperator (line 22) | public static bool IsConversionOperator(this MethodDefinition method) method IsSimpleSetter (line 30) | public static bool IsSimpleSetter(this MethodDefinition original) method IsSimpleGetter (line 35) | public static bool IsSimpleGetter(this MethodDefinition original) method IsSimplePropertyAccessor (line 40) | public static bool IsSimplePropertyAccessor(this MethodDefinition method) method IsDefaultConstructor (line 45) | public static bool IsDefaultConstructor(MethodDefinition m) FILE: AssetStudioUtility/Unity.CecilTools/Extensions/ResolutionExtensions.cs class ResolutionExtensions (line 10) | public static class ResolutionExtensions method CheckedResolve (line 12) | public static TypeDefinition CheckedResolve(this TypeReference type) method CheckedResolve (line 17) | public static MethodDefinition CheckedResolve(this MethodReference met... method Resolve (line 22) | private static TDefinition Resolve(TReference... FILE: AssetStudioUtility/Unity.CecilTools/Extensions/TypeDefinitionExtensions.cs class TypeDefinitionExtensions (line 13) | public static class TypeDefinitionExtensions method IsSubclassOf (line 15) | public static bool IsSubclassOf(this TypeDefinition type, string baseT... method IsSubclassOf (line 30) | public static bool IsSubclassOf(this TypeDefinition type, params strin... FILE: AssetStudioUtility/Unity.CecilTools/Extensions/TypeReferenceExtensions.cs class TypeReferenceExtensions (line 9) | public static class TypeReferenceExtensions method SafeNamespace (line 11) | public static string SafeNamespace(this TypeReference type) method IsAssignableTo (line 20) | public static bool IsAssignableTo(this TypeReference typeRef, string t... method IsEnum (line 38) | public static bool IsEnum(this TypeReference type) method IsStruct (line 43) | public static bool IsStruct(this TypeReference type) method IsSystemDecimal (line 48) | private static bool IsSystemDecimal(TypeReference type) FILE: AssetStudioUtility/Unity.SerializationLogic/UnityEngineTypePredicates.cs class UnityEngineTypePredicates (line 11) | public class UnityEngineTypePredicates method IsMonoBehaviour (line 59) | public static bool IsMonoBehaviour(TypeReference type) method IsMonoBehaviour (line 64) | private static bool IsMonoBehaviour(TypeDefinition typeDefinition) method IsScriptableObject (line 69) | public static bool IsScriptableObject(TypeReference type) method IsScriptableObject (line 74) | private static bool IsScriptableObject(TypeDefinition temp) method IsColor32 (line 79) | public static bool IsColor32(TypeReference type) method IsMatrix4x4 (line 85) | public static bool IsMatrix4x4(TypeReference type) method IsGradient (line 90) | public static bool IsGradient(TypeReference type) method IsGUIStyle (line 95) | public static bool IsGUIStyle(TypeReference type) method IsRectOffset (line 100) | public static bool IsRectOffset(TypeReference type) method IsSerializableUnityClass (line 105) | public static bool IsSerializableUnityClass(TypeReference type) method IsSerializableUnityStruct (line 115) | public static bool IsSerializableUnityStruct(TypeReference type) method IsUnityEngineObject (line 132) | public static bool IsUnityEngineObject(TypeReference type) method ShouldHaveHadSerializableAttribute (line 148) | public static bool ShouldHaveHadSerializableAttribute(TypeReference type) method IsUnityEngineValueType (line 153) | public static bool IsUnityEngineValueType(TypeReference type) method IsSerializeFieldAttribute (line 158) | public static bool IsSerializeFieldAttribute(TypeReference attributeType) method IsSerializeReferenceAttribute (line 163) | public static bool IsSerializeReferenceAttribute(TypeReference attribu... FILE: AssetStudioUtility/Unity.SerializationLogic/UnitySerializationLogic.cs class GenericInstanceHolder (line 15) | internal class GenericInstanceHolder class TypeResolver (line 21) | public class TypeResolver method TypeResolver (line 27) | public TypeResolver() method TypeResolver (line 31) | public TypeResolver(IGenericInstance typeDefinitionContext) method TypeResolver (line 36) | public TypeResolver(GenericInstanceMethod methodDefinitionContext) method TypeResolver (line 41) | public TypeResolver(IGenericInstance typeDefinitionContext, IGenericIn... method Add (line 47) | public void Add(GenericInstanceType genericInstanceType) method Remove (line 52) | public void Remove(GenericInstanceType genericInstanceType) method Add (line 57) | public void Add(GenericInstanceMethod genericInstanceMethod) method ElementTypeFor (line 62) | private static MemberReference ElementTypeFor(TypeSpecification generi... method ElementTypeFor (line 67) | private static MemberReference ElementTypeFor(MethodSpecification gene... method Remove (line 72) | public void Remove(GenericInstanceMethod genericInstanceMethod) method Resolve (line 77) | public TypeReference Resolve(TypeReference typeReference) method ResolveGenericParameter (line 136) | private TypeReference ResolveGenericParameter(GenericParameter generic... method GenericArgumentAt (line 165) | private TypeReference GenericArgumentAt(string key, int position) method Add (line 170) | private void Add(string key, IGenericInstance value) method Remove (line 192) | private void Remove(string key, IGenericInstance value) class UnitySerializationLogic (line 218) | public static class UnitySerializationLogic method WillUnitySerialize (line 220) | public static bool WillUnitySerialize(FieldDefinition fieldDefinition) method WillUnitySerialize (line 225) | public static bool WillUnitySerialize(FieldDefinition fieldDefinition,... method IsDelegate (line 277) | private static bool IsDelegate(TypeReference typeReference) method ShouldFieldBePPtrRemapped (line 282) | public static bool ShouldFieldBePPtrRemapped(FieldDefinition fieldDefi... method ShouldFieldBePPtrRemapped (line 287) | public static bool ShouldFieldBePPtrRemapped(FieldDefinition fieldDefi... method CanTypeContainUnityEngineObjectReference (line 295) | private static bool CanTypeContainUnityEngineObjectReference(TypeRefer... method HasFieldsThatCanContainUnityEngineObjectReferences (line 316) | private static bool HasFieldsThatCanContainUnityEngineObjectReferences... method AllFieldsFor (line 321) | private static IEnumerable... method CanFieldContainUnityEngineObjectReference (line 340) | private static bool CanFieldContainUnityEngineObjectReference(TypeRefe... method IsConst (line 354) | private static bool IsConst(FieldDefinition fieldDefinition) method HasSerializeFieldAttribute (line 359) | public static bool HasSerializeFieldAttribute(FieldDefinition field) method HasSerializeReferenceAttribute (line 368) | public static bool HasSerializeReferenceAttribute(FieldDefinition field) method FieldAttributes (line 376) | private static IEnumerable FieldAttributes(FieldDefinit... method ShouldNotTryToResolve (line 381) | public static bool ShouldNotTryToResolve(TypeReference typeReference) method IsFieldTypeSerializable (line 410) | private static bool IsFieldTypeSerializable(TypeReference typeReferenc... method IsValueTypeSerializable (line 415) | private static bool IsValueTypeSerializable(TypeReference typeReference) method IsReferenceTypeSerializable (line 424) | private static bool IsReferenceTypeSerializable(TypeReference typeRefe... method IsTypeSerializable (line 440) | private static bool IsTypeSerializable(TypeReference typeReference) method IsGenericDictionary (line 449) | private static bool IsGenericDictionary(TypeReference typeReference) method IsFixedBuffer (line 462) | public static bool IsFixedBuffer(FieldDefinition fieldDefinition) method GetFixedBufferAttribute (line 467) | public static CustomAttribute GetFixedBufferAttribute(FieldDefinition ... method GetFixedBufferLength (line 475) | public static int GetFixedBufferLength(FieldDefinition fieldDefinition) method PrimitiveTypeSize (line 487) | public static int PrimitiveTypeSize(TypeReference type) method IsSerializablePrimitive (line 516) | private static bool IsSerializablePrimitive(TypeReference typeReference) method IsSupportedCollection (line 538) | public static bool IsSupportedCollection(TypeReference typeReference) method ShouldHaveHadAllFieldsPublic (line 550) | private static bool ShouldHaveHadAllFieldsPublic(FieldDefinition field) method IsUnityEngineObject (line 555) | private static bool IsUnityEngineObject(TypeReference typeReference) method IsNonSerialized (line 560) | public static bool IsNonSerialized(TypeReference typeDeclaration) method ShouldImplementIDeserializable (line 582) | public static bool ShouldImplementIDeserializable(TypeReference typeDe... FILE: Texture2DDecoderNative/astc.cpp function uint_fast8_t (line 31) | static inline uint_fast8_t bit_reverse_u8(const uint_fast8_t c, const in... function uint_fast64_t (line 35) | static inline uint_fast64_t bit_reverse_u64(const uint_fast64_t d, const... function getbits (line 44) | static inline int getbits(const uint8_t *buf, const int bit, const int l... function uint_fast64_t (line 48) | static inline uint_fast64_t getbits64(const uint8_t *buf, const int bit,... function u8ptr_to_u16 (line 62) | static inline uint16_t u8ptr_to_u16(const uint8_t *ptr) { function uint_fast8_t (line 66) | static inline uint_fast8_t clamp(const int n) { function bit_transfer_signed (line 70) | static inline void bit_transfer_signed(int *a, int *b) { function set_endpoint (line 77) | static inline void set_endpoint(int endpoint[8], int r1, int g1, int b1,... function set_endpoint_clamp (line 88) | static inline void set_endpoint_clamp(int endpoint[8], int r1, int g1, i... function set_endpoint_blue (line 99) | static inline void set_endpoint_blue(int endpoint[8], int r1, int g1, in... function set_endpoint_blue_clamp (line 110) | static inline void set_endpoint_blue_clamp(int endpoint[8], int r1, int ... function uint_fast16_t (line 122) | static inline uint_fast16_t clamp_hdr(const int n) { function set_endpoint_hdr (line 126) | static inline void set_endpoint_hdr(int endpoint[8], int r1, int g1, int... function set_endpoint_hdr_clamp (line 137) | static inline void set_endpoint_hdr_clamp(int endpoint[8], int r1, int g... function uint_fast8_t (line 151) | static uint_fast8_t select_color(int v0, int v1, int weight) { function uint_fast8_t (line 155) | static uint_fast8_t select_color_hdr(int v0, int v1, int weight) { function f32_to_u8 (line 168) | static inline uint8_t f32_to_u8(const float f) { function f16ptr_to_u8 (line 178) | static inline uint8_t f16ptr_to_u8(const uint8_t *ptr) { function decode_intseq (line 205) | void decode_intseq(const uint8_t *buf, int offset, const int a, const in... function decode_block_params (line 322) | void decode_block_params(const uint8_t *buf, BlockData *block_data) { function decode_endpoints_hdr7 (line 462) | void decode_endpoints_hdr7(int *endpoints, int *v) { function decode_endpoints_hdr11 (line 556) | void decode_endpoints_hdr11(int *endpoints, int *v, int alpha1, int alph... function decode_endpoints (line 671) | void decode_endpoints(const uint8_t *buf, BlockData *data) { function decode_weights (line 883) | void decode_weights(const uint8_t *buf, BlockData *data) { function select_partition (line 988) | void select_partition(const uint8_t *buf, BlockData *data) { function applicate_color (line 1044) | void applicate_color(const BlockData *data, uint32_t *outbuf) { function decode_block (line 1110) | void decode_block(const uint8_t *buf, const int bw, const int bh, uint32... function decode_astc (line 1136) | int decode_astc(const uint8_t *data, const long w, const long h, const i... FILE: Texture2DDecoderNative/atc.cpp function expand_quantized (line 6) | static uint8_t expand_quantized(uint8_t v, int bits) { function decode_atc_block (line 11) | void decode_atc_block(const uint8_t* _src, uint32_t* _dst) function decode_atc_rgb4 (line 62) | int decode_atc_rgb4(const uint8_t* data, uint32_t m_width, uint32_t m_he... function decode_atc_rgba8 (line 77) | int decode_atc_rgba8(const uint8_t* data, uint32_t m_width, uint32_t m_h... FILE: Texture2DDecoderNative/bcn.cpp function decode_bc1_block (line 8) | static inline void decode_bc1_block(const uint8_t* data, uint32_t* outbu... function decode_bc1 (line 28) | int decode_bc1(const uint8_t* data, const long w, const long h, uint32_t... function decode_bc3_alpha (line 42) | void decode_bc3_alpha(const uint8_t* data, uint32_t* outbuf, int channel) { function decode_bc3_block (line 67) | static inline void decode_bc3_block(const uint8_t* data, uint32_t* outbu... function decode_bc3 (line 72) | int decode_bc3(const uint8_t* data, const long w, const long h, uint32_t... function decode_bc4_block (line 86) | static inline void decode_bc4_block(const uint8_t* data, uint32_t* outbu... function decode_bc4 (line 90) | int decode_bc4(const uint8_t* data, uint32_t m_width, uint32_t m_height,... function decode_bc5_block (line 107) | static inline void decode_bc5_block(const uint8_t* data, uint32_t* outbu... function decode_bc5 (line 112) | int decode_bc5(const uint8_t* data, uint32_t m_width, uint32_t m_height,... type BitReader (line 129) | struct BitReader method BitReader (line 131) | BitReader(const uint8_t* _data, uint16_t _bitPos = 0) method read (line 137) | uint16_t read(uint8_t _numBits) method peek (line 147) | uint16_t peek(uint16_t _offset, uint8_t _numBits) type Bc6hModeInfo (line 248) | struct Bc6hModeInfo function unquantize (line 295) | static uint16_t unquantize(uint16_t _value, bool _signed, uint8_t _endpo... function finish_unquantize (line 345) | static uint16_t finish_unquantize(uint16_t _value, bool _signed) function sign_extend (line 358) | static uint16_t sign_extend(uint16_t _value, uint8_t _numBits) function f32_to_u8 (line 366) | static inline uint8_t f32_to_u8(const float f) { function half_to_u8 (line 376) | static uint8_t half_to_u8(uint16_t h) { function decode_bc6_block (line 380) | static void decode_bc6_block(const uint8_t* _src, uint32_t* _dst, bool _... function decode_bc6 (line 794) | int decode_bc6(const uint8_t* data, uint32_t m_width, uint32_t m_height,... type Bc7ModeInfo (line 901) | struct Bc7ModeInfo function expand_quantized (line 934) | static uint8_t expand_quantized(uint8_t v, int bits) { function decode_bc7_block (line 939) | static void decode_bc7_block(const uint8_t* _src, uint32_t* _dst) function decode_bc7 (line 1122) | int decode_bc7(const uint8_t* data, uint32_t m_width, uint32_t m_height,... FILE: Texture2DDecoderNative/bcn.h type color_bgra (line 4) | struct color_bgra function color_bgra (line 12) | const color_bgra g_black_color{ 0, 0, 0, 255 }; FILE: Texture2DDecoderNative/bool32_t.h type bool32_t (line 5) | typedef uint32_t bool32_t; FILE: Texture2DDecoderNative/color.h function uint_fast32_t (line 14) | static inline uint_fast32_t color(uint8_t r, uint8_t g, uint8_t b, uint8... function uint_fast32_t (line 22) | static inline uint_fast32_t alpha_mask(uint8_t a) { function rgb565_le (line 30) | static inline void rgb565_le(const uint16_t d, uint8_t *r, uint8_t *g, u... function rgb565_be (line 42) | static inline void rgb565_be(const uint16_t d, uint8_t *r, uint8_t *g, u... function rgb565_lep (line 54) | static inline void rgb565_lep(const uint16_t d, uint8_t *c) { function rgb565_bep (line 66) | static inline void rgb565_bep(const uint16_t d, uint8_t *c) { function copy_block_buffer (line 78) | static inline void copy_block_buffer(const long bx, const long by, const... FILE: Texture2DDecoderNative/crunch.cpp function crunch_unpack_level (line 6) | bool crunch_unpack_level(const uint8_t* data, uint32_t data_size, uint32... FILE: Texture2DDecoderNative/crunch/crn_decomp.h function namespace (line 29) | namespace crnd function namespace (line 205) | namespace crnd type crn_palette (line 254) | struct crn_palette type crn_header_flags (line 261) | enum crn_header_flags type crn_header (line 267) | struct crn_header function namespace (line 357) | namespace crnd function namespace (line 402) | namespace crnd function namespace (line 424) | namespace crnd function namespace (line 442) | namespace crnd function namespace (line 501) | namespace crnd function namespace (line 588) | namespace crnd function namespace (line 662) | namespace crnd function namespace (line 757) | namespace crnd function namespace (line 798) | namespace crnd function reserve (line 932) | inline bool reserve(uint32 new_capacity) function resize (line 940) | inline bool resize(uint32 new_size) function push_back (line 963) | inline bool push_back(const T& obj) function pop_back (line 979) | inline void pop_back() function insert (line 990) | inline void insert(uint32 index, const T* p, uint32 n) function erase (line 1020) | inline void erase(uint32 start, uint32 n) function erase (line 1041) | inline void erase(uint32 index) function erase (line 1046) | inline void erase(T* p) function operator (line 1052) | inline bool operator== (const vector& rhs) const function operator (line 1073) | inline bool operator< (const vector& rhs) const function swap (line 1093) | void swap(vector& other) function object_mover (line 1109) | static void object_mover(void* pDst_void, void* pSrc_void, uint32 num) function increase_capacity (line 1124) | inline bool increase_capacity(uint32 min_new_capacity, bool grow_hint) function namespace (line 1146) | namespace crnd function namespace (line 1153) | namespace crnd function namespace (line 1162) | namespace crnd function clear (line 1314) | inline void clear() function color_quad (line 1360) | inline color_quad& set_noclamp_rgba(parameter_type red, parameter_type g... function color_quad (line 1369) | inline color_quad& set_noclamp_rgb(parameter_type red, parameter_type gr... function parameter_type (line 1377) | static inline parameter_type get_min_comp() { return component_traits::c... function parameter_type (line 1378) | static inline parameter_type get_max_comp() { return component_traits::c... function get_comps_are_signed (line 1379) | static inline bool get_comps_are_signed() { return component_traits::cSi... function component_type (line 1381) | inline component_type operator[] (uint32 i) const { CRND_ASSERT(i < cNum... function component_type (line 1382) | inline component_type& operator[] (uint32 i) { CRND_ASSERT(i < cNumComps... function color_quad (line 1384) | inline color_quad& set_component(uint32 i, parameter_type f) function color_quad (line 1393) | inline color_quad& clamp(const color_quad& l, const color_quad& h) function color_quad (line 1400) | inline color_quad& clamp(parameter_type l, parameter_type h) function rgb_equals (line 1424) | inline bool rgb_equals(const color_quad& rhs) const function operator (line 1429) | inline bool operator== (const color_quad& rhs) const function operator (line 1434) | inline bool operator< (const color_quad& rhs) const function color_quad (line 1474) | inline color_quad get_swizzled(uint32 x, uint32 y, uint32 z, uint32 w) c... function get_float4 (line 1535) | inline void get_float4(float* pDst) function get_float3 (line 1541) | inline void get_float3(float* pDst) function color_quad (line 1547) | static inline color_quad make_black() function color_quad (line 1552) | static inline color_quad make_white() function construct (line 1566) | static inline void construct(color_quad* p) { } function construct (line 1567) | static inline void construct(color_quad* p, const color_quad... function construct_array (line 1568) | static inline void construct_array(color_quad* p, uint32 n) { p, n; } function destruct (line 1569) | static inline void destruct(color_quad* p) { p; } function destruct_array (line 1570) | static inline void destruct_array(color_quad* p, uint32 n) { p, n; } type color_quad (line 1573) | typedef color_quad color_quad_u8; type color_quad (line 1574) | typedef color_quad color_quad_i16; type color_quad (line 1575) | typedef color_quad color_quad_u16; type color_quad (line 1576) | typedef color_quad color_quad_i32; type color_quad (line 1577) | typedef color_quad color_quad_u32; type color_quad (line 1578) | typedef color_quad color_quad_f; type color_quad (line 1579) | typedef color_quad color_quad_d; function namespace (line 1584) | namespace crnd type dxt3_block (line 1707) | struct dxt3_block function get_low_alpha (line 1718) | struct dxt5_block function set_low_alpha (line 1740) | inline void set_low_alpha(uint32 i) function set_high_alpha (line 1746) | inline void set_high_alpha(uint32 i) function uint32 (line 1754) | uint32 get_selectors_as_word(uint32 index) { CRND_ASSERT(index < 3); ret... function uint32 (line 1756) | inline uint32 get_selector(uint32 x, uint32 y) const function set_selector (line 1773) | inline void set_selector(uint32 x, uint32 y, uint32 val) function namespace (line 1814) | namespace crnd function namespace (line 1861) | namespace crnd function uint32 (line 1958) | inline uint32 get_unshifted_max_code(uint32 len) const function namespace (line 1973) | namespace crnd function namespace (line 2043) | namespace crnd function namespace (line 2090) | namespace crnd function namespace (line 2119) | namespace crnd function namespace (line 2169) | namespace crnd function namespace (line 2195) | namespace crnd function namespace (line 2382) | namespace crnd function namespace (line 2411) | namespace crnd function namespace (line 2594) | namespace crnd function namespace (line 2614) | namespace crnd function namespace (line 2906) | namespace crnd function clear (line 2956) | void static_huffman_data_model::clear() function init (line 2967) | bool static_huffman_data_model::init(uint32 total_syms, const uint8* pCo... function prepare_decoder_tables (line 3002) | bool static_huffman_data_model::prepare_decoder_tables() function decode_receive_static_data_model (line 3079) | bool symbol_codec::decode_receive_static_data_model(static_huffman_data_... function start_decoding (line 3160) | bool symbol_codec::start_decoding(const uint8* pBuf, uint32 buf_size) function get_bits_init (line 3175) | void symbol_codec::get_bits_init() function uint32 (line 3181) | uint32 symbol_codec::decode_bits(uint32 num_bits) function uint32 (line 3197) | uint32 symbol_codec::get_bits(uint32 num_bits) function uint32 (line 3221) | uint32 symbol_codec::decode(const static_huffman_data_model& model) function uint64 (line 3288) | uint64 symbol_codec::stop_decoding() function namespace (line 3305) | namespace crnd function namespace (line 3346) | namespace crnd function namespace (line 3581) | namespace crnd function crnd_unpack_context (line 4725) | crnd_unpack_context crnd_unpack_begin(const void* pData, uint32 data_size) function crnd_get_data (line 4743) | bool crnd_get_data(crnd_unpack_context pContext, const void** ppData, ui... function crnd_unpack_level (line 4762) | bool crnd_unpack_level( function crnd_unpack_level_segmented (line 4778) | bool crnd_unpack_level_segmented( function crnd_unpack_end (line 4795) | bool crnd_unpack_end(crnd_unpack_context pContext) FILE: Texture2DDecoderNative/crunch/crnlib.h type crn_uint8 (line 26) | typedef unsigned char crn_uint8; type crn_uint16 (line 27) | typedef unsigned short crn_uint16; type crn_uint32 (line 28) | typedef unsigned int crn_uint32; type crn_int8 (line 29) | typedef signed char crn_int8; type crn_int16 (line 30) | typedef signed short crn_int16; type crn_int32 (line 31) | typedef signed int crn_int32; type crn_bool (line 32) | typedef unsigned int crn_bool; type crn_file_type (line 35) | enum crn_file_type type crn_format (line 49) | enum crn_format type crn_limits (line 83) | enum crn_limits type crn_comp_flags (line 102) | enum crn_comp_flags type crn_dxt_quality (line 158) | enum crn_dxt_quality type crn_dxt_compressor_type (line 172) | enum crn_dxt_compressor_type type crn_bool (line 195) | typedef crn_bool (*crn_progress_callback_func)(crn_uint32 phase_index, c... function clear (line 198) | struct crn_comp_params function operator (line 239) | inline bool operator== (const crn_comp_params& rhs) const function get_flag (line 302) | inline bool get_flag(crn_comp_flags flag) const { return (m_flags & flag... function set_flag (line 303) | inline void set_flag(crn_comp_flags flag, bool val) { m_flags &= ~flag; ... type crn_mip_mode (line 361) | enum crn_mip_mode type crn_mip_filter (line 377) | enum crn_mip_filter type crn_scale_mode (line 393) | enum crn_scale_mode function clear (line 410) | struct crn_mipmap_params function operator (line 444) | inline bool operator== (const crn_mipmap_params& rhs) const type crn_texture_desc (line 549) | struct crn_texture_desc FILE: Texture2DDecoderNative/dllmain.cpp function DecodeDXT1 (line 12) | DecodeDXT1(const void* data, int32_t width, int32_t height, void* image) function DecodeDXT5 (line 17) | DecodeDXT5(const void* data, int32_t width, int32_t height, void* image) function DecodePVRTC (line 22) | DecodePVRTC(const void* data, int32_t width, int32_t height, void* image... function DecodeETC1 (line 27) | DecodeETC1(const void* data, int32_t width, int32_t height, void* image) function DecodeETC2 (line 32) | DecodeETC2(const void* data, int32_t width, int32_t height, void* image) function DecodeETC2A1 (line 37) | DecodeETC2A1(const void* data, int32_t width, int32_t height, void* image) function DecodeETC2A8 (line 42) | DecodeETC2A8(const void* data, int32_t width, int32_t height, void* image) function DecodeEACR (line 47) | DecodeEACR(const void* data, int32_t width, int32_t height, void* image) function DecodeEACRSigned (line 52) | DecodeEACRSigned(const void* data, int32_t width, int32_t height, void* ... function DecodeEACRG (line 57) | DecodeEACRG(const void* data, int32_t width, int32_t height, void* image) function DecodeEACRGSigned (line 62) | DecodeEACRGSigned(const void* data, int32_t width, int32_t height, void*... function DecodeBC4 (line 67) | DecodeBC4(const void* data, int32_t width, int32_t height, void* image) function DecodeBC5 (line 72) | DecodeBC5(const void* data, int32_t width, int32_t height, void* image) function DecodeBC6 (line 77) | DecodeBC6(const void* data, int32_t width, int32_t height, void* image) function DecodeBC7 (line 82) | DecodeBC7(const void* data, int32_t width, int32_t height, void* image) function DecodeATCRGB4 (line 87) | DecodeATCRGB4(const void* data, int32_t width, int32_t height, void* image) function DecodeATCRGBA8 (line 92) | DecodeATCRGBA8(const void* data, int32_t width, int32_t height, void* im... function DecodeASTC (line 97) | DecodeASTC(const void* data, int32_t width, int32_t height, int32_t bloc... function DisposeBuffer (line 102) | DisposeBuffer(void** ppBuffer) function UnpackCrunch (line 116) | UnpackCrunch(const void* data, uint32_t dataSize, void** ppResult, uint3... function UnpackUnityCrunch (line 146) | UnpackUnityCrunch(const void* data, uint32_t dataSize, void** ppResult, ... FILE: Texture2DDecoderNative/endianness.h function bswap16 (line 96) | static inline uint16_t bswap16(uint16_t x) { function bswap32 (line 99) | static inline uint32_t bswap32(uint32_t x) { function bswap64 (line 103) | static inline uint64_t bswap64(uint64_t x) { function htonf (line 155) | static inline float htonf(float f) { function htond (line 168) | static inline double htond(double f) { FILE: Texture2DDecoderNative/etc.cpp function uint_fast8_t (line 24) | static inline uint_fast8_t clamp(const int n) { function applicate_color (line 28) | static inline uint32_t applicate_color(uint_fast8_t c[3], int_fast16_t m) { function applicate_color_alpha (line 32) | static inline uint32_t applicate_color_alpha(uint_fast8_t c[3], int_fast... function applicate_color_raw (line 36) | static inline uint32_t applicate_color_raw(uint_fast8_t c[3]) { function decode_etc1_block (line 40) | static void decode_etc1_block(const uint8_t *data, uint32_t *outbuf) { function decode_etc2_block (line 77) | static void decode_etc2_block(const uint8_t *data, uint32_t *outbuf) { function decode_etc2a1_block (line 183) | static void decode_etc2a1_block(const uint8_t *data, uint32_t *outbuf) { function decode_etc2a8_block (line 282) | static void decode_etc2a8_block(const uint8_t *data, uint32_t *outbuf) { function decode_eac_block (line 297) | static void decode_eac_block(const uint8_t *data, int color, uint32_t *o... function decode_eac_signed_block (line 309) | static void decode_eac_signed_block(const uint8_t *data, int color, uint... function decode_etc1 (line 322) | int decode_etc1(const uint8_t *data, const long w, const long h, uint32_... function decode_etc2 (line 335) | int decode_etc2(const uint8_t *data, const long w, const long h, uint32_... function decode_etc2a1 (line 348) | int decode_etc2a1(const uint8_t *data, const long w, const long h, uint3... function decode_etc2a8 (line 361) | int decode_etc2a8(const uint8_t *data, const long w, const long h, uint3... function decode_eacr (line 375) | int decode_eacr(const uint8_t *data, const long w, const long h, uint32_... function decode_eacr_signed (line 392) | int decode_eacr_signed(const uint8_t *data, const long w, const long h, ... function decode_eacrg (line 409) | int decode_eacrg(const uint8_t *data, const long w, const long h, uint32... function decode_eacrg_signed (line 427) | int decode_eacrg_signed(const uint8_t *data, const long w, const long h,... FILE: Texture2DDecoderNative/fp16/bitcasts.h function fp32_from_bits (line 12) | static inline float fp32_from_bits(uint32_t w) { function fp32_to_bits (line 28) | static inline uint32_t fp32_to_bits(float f) { function fp64_from_bits (line 44) | static inline double fp64_from_bits(uint64_t w) { function fp64_to_bits (line 60) | static inline uint64_t fp64_to_bits(double f) { FILE: Texture2DDecoderNative/fp16/fp16.h function fp16_ieee_to_fp32_bits (line 26) | static inline uint32_t fp16_ieee_to_fp32_bits(uint16_t h) { function fp16_ieee_to_fp32_value (line 108) | static inline float fp16_ieee_to_fp32_value(uint16_t h) { function fp16_ieee_from_fp32_value (line 223) | static inline uint16_t fp16_ieee_from_fp32_value(float f) { function fp16_alt_to_fp32_bits (line 255) | static inline uint32_t fp16_alt_to_fp32_bits(uint16_t h) { function fp16_alt_to_fp32_value (line 328) | static inline float fp16_alt_to_fp32_value(uint16_t h) { function fp16_alt_from_fp32_value (line 430) | static inline uint16_t fp16_alt_from_fp32_value(float f) { FILE: Texture2DDecoderNative/pvrtc.cpp function morton_index (line 10) | static inline long morton_index(const long x, const long y, const long m... function get_texel_colors (line 18) | static void get_texel_colors(const uint8_t *data, PVRTCTexelInfo *info) { function get_texel_weights_4bpp (line 45) | static void get_texel_weights_4bpp(const uint8_t *data, PVRTCTexelInfo *... function get_texel_weights_2bpp (line 63) | static void get_texel_weights_2bpp(const uint8_t *data, PVRTCTexelInfo *... function applicate_color_4bpp (line 86) | static void applicate_color_4bpp(const uint8_t *data, PVRTCTexelInfo *co... function applicate_color_2bpp (line 128) | static void applicate_color_2bpp(const uint8_t *data, PVRTCTexelInfo *co... function decode_pvrtc (line 195) | int decode_pvrtc(const uint8_t *data, const long w, const long h, uint32... FILE: Texture2DDecoderNative/pvrtc.h type PVRTCTexelColor (line 6) | typedef struct { type PVRTCTexelColorInt (line 13) | typedef struct { type PVRTCTexelInfo (line 20) | typedef struct { FILE: Texture2DDecoderNative/unitycrunch.cpp function unity_crunch_unpack_level (line 6) | bool unity_crunch_unpack_level(const uint8_t* data, uint32_t data_size, ... FILE: Texture2DDecoderNative/unitycrunch/crn_decomp.h function namespace (line 48) | namespace unitycrnd { function namespace (line 117) | namespace unitycrnd { function namespace (line 130) | namespace unitycrnd { function namespace (line 147) | namespace unitycrnd { function namespace (line 198) | namespace unitycrnd { function namespace (line 293) | namespace unitycrnd { function namespace (line 358) | namespace unitycrnd { function namespace (line 444) | namespace unitycrnd { function namespace (line 485) | namespace unitycrnd { function namespace (line 819) | namespace unitycrnd { function namespace (line 825) | namespace unitycrnd { function namespace (line 833) | namespace unitycrnd { function clear (line 967) | inline void clear() { function color_quad (line 1008) | inline color_quad& set_noclamp_rgba(parameter_type red, parameter_type g... function color_quad (line 1016) | inline color_quad& set_noclamp_rgb(parameter_type red, parameter_type gr... function parameter_type (line 1023) | static inline parameter_type get_min_comp() { return component_traits::c... function parameter_type (line 1024) | static inline parameter_type get_max_comp() { return component_traits::c... function get_comps_are_signed (line 1025) | static inline bool get_comps_are_signed() { return component_traits::cSi... function component_type (line 1027) | inline component_type operator[](uint32 i) const { function component_type (line 1031) | inline component_type& operator[](uint32 i) { function color_quad (line 1036) | inline color_quad& set_component(uint32 i, parameter_type f) { function color_quad (line 1044) | inline color_quad& clamp(const color_quad& l, const color_quad& h) { function color_quad (line 1050) | inline color_quad& clamp(parameter_type l, parameter_type h) { function rgb_equals (line 1070) | inline bool rgb_equals(const color_quad& rhs) const { function rhs (line 1074) | inline bool operator==(const color_quad& rhs) const { function rhs (line 1078) | inline bool operator<(const color_quad& rhs) const { function color_quad (line 1112) | inline color_quad get_swizzled(uint32 x, uint32 y, uint32 z, uint32 w) c... function get_float4 (line 1165) | inline void get_float4(float* pDst) { function get_float3 (line 1170) | inline void get_float3(float* pDst) { function color_quad (line 1175) | static inline color_quad make_black() { function color_quad (line 1179) | static inline color_quad make_white() { function construct (line 1191) | static inline void construct(color_quad* p) {} function construct (line 1192) | static inline void construct(color_quad* p, const color_quad... function construct_array (line 1193) | static inline void construct_array(color_quad* p, uint32 n) { p, n; } function destruct (line 1194) | static inline void destruct(color_quad* p) { p; } function destruct_array (line 1195) | static inline void destruct_array(color_quad* p, uint32 n) { p, n; } type color_quad (line 1198) | typedef color_quad color_quad_u8; type color_quad (line 1199) | typedef color_quad color_quad_i16; type color_quad (line 1200) | typedef color_quad color_quad_u16; type color_quad (line 1201) | typedef color_quad color_quad_i32; type color_quad (line 1202) | typedef color_quad color_quad_u32; type color_quad (line 1203) | typedef color_quad color_quad_f; type color_quad (line 1204) | typedef color_quad color_quad_d; function namespace (line 1209) | namespace unitycrnd { type dxt3_block (line 1321) | struct dxt3_block { function get_low_alpha (line 1331) | struct dxt5_block { function set_low_alpha (line 1349) | inline void set_low_alpha(uint32 i) { function set_high_alpha (line 1354) | inline void set_high_alpha(uint32 i) { function uint32 (line 1361) | uint32 get_selectors_as_word(uint32 index) { function uint32 (line 1366) | inline uint32 get_selector(uint32 x, uint32 y) const { function set_selector (line 1382) | inline void set_selector(uint32 x, uint32 y, uint32 val) { function namespace (line 1428) | namespace unitycrnd { function uint32 (line 1513) | inline uint32 get_unshifted_max_code(uint32 len) const { function namespace (line 1527) | namespace unitycrnd { function namespace (line 1590) | namespace unitycrnd { function namespace (line 1632) | namespace unitycrnd { function namespace (line 1657) | namespace unitycrnd { function namespace (line 1702) | namespace unitycrnd { function namespace (line 1724) | namespace unitycrnd { function namespace (line 1891) | namespace unitycrnd { function namespace (line 1916) | namespace unitycrnd { function namespace (line 2071) | namespace unitycrnd { function namespace (line 2088) | namespace unitycrnd { function namespace (line 2382) | namespace unitycrnd { function clear (line 2423) | void static_huffman_data_model::clear() { function init (line 2432) | bool static_huffman_data_model::init(uint32 total_syms, const uint8* pCo... function prepare_decoder_tables (line 2465) | bool static_huffman_data_model::prepare_decoder_tables() { function decode_receive_static_data_model (line 2538) | bool symbol_codec::decode_receive_static_data_model(static_huffman_data_... function start_decoding (line 2609) | bool symbol_codec::start_decoding(const uint8* pBuf, uint32 buf_size) { function get_bits_init (line 2623) | void symbol_codec::get_bits_init() { function uint32 (line 2628) | uint32 symbol_codec::decode_bits(uint32 num_bits) { function uint32 (line 2641) | uint32 symbol_codec::get_bits(uint32 num_bits) { function uint32 (line 2663) | uint32 symbol_codec::decode(const static_huffman_data_model& model) { function uint64 (line 2722) | uint64 symbol_codec::stop_decoding() { function namespace (line 2729) | namespace unitycrnd { function namespace (line 2939) | namespace unitycrnd { function crnd_unpack_context (line 3713) | crnd_unpack_context crnd_unpack_begin(const void* pData, uint32 data_siz... function crnd_get_data (line 3729) | bool crnd_get_data(crnd_unpack_context pContext, const void** ppData, ui... function crnd_unpack_level (line 3747) | bool crnd_unpack_level( function crnd_unpack_level_segmented (line 3762) | bool crnd_unpack_level_segmented( function crnd_unpack_end (line 3778) | bool crnd_unpack_end(crnd_unpack_context pContext) { FILE: Texture2DDecoderNative/unitycrunch/crn_defs.h function namespace (line 17) | namespace unitycrnd { function namespace (line 192) | namespace unitycrnd { type crn_palette (line 238) | struct crn_palette { type crn_header_flags (line 244) | enum crn_header_flags { type crn_header (line 249) | struct crn_header { FILE: Texture2DDecoderNative/unitycrunch/crnlib.h type crn_uint8 (line 26) | typedef unsigned char crn_uint8; type crn_uint16 (line 27) | typedef unsigned short crn_uint16; type crn_uint32 (line 28) | typedef unsigned int crn_uint32; type crn_int8 (line 29) | typedef signed char crn_int8; type crn_int16 (line 30) | typedef signed short crn_int16; type crn_int32 (line 31) | typedef signed int crn_int32; type crn_bool (line 32) | typedef unsigned int crn_bool; type crn_file_type (line 35) | enum crn_file_type { type crn_format (line 48) | enum crn_format { type crn_limits (line 85) | enum crn_limits { type crn_comp_flags (line 103) | enum crn_comp_flags { type crn_dxt_quality (line 158) | enum crn_dxt_quality { type crn_dxt_compressor_type (line 171) | enum crn_dxt_compressor_type { type crn_bool (line 193) | typedef crn_bool (*crn_progress_callback_func)(crn_uint32 phase_index, c... function clear (line 196) | struct crn_comp_params { function rhs (line 235) | inline bool operator==(const crn_comp_params& rhs) const { function get_flag (line 299) | inline bool get_flag(crn_comp_flags flag) const { return (m_flags & flag... function set_flag (line 300) | inline void set_flag(crn_comp_flags flag, bool val) { type crn_mip_mode (line 362) | enum crn_mip_mode { type crn_mip_filter (line 377) | enum crn_mip_filter { type crn_scale_mode (line 392) | enum crn_scale_mode { function clear (line 408) | struct crn_mipmap_params { function rhs (line 440) | inline bool operator==(const crn_mipmap_params& rhs) const { type crn_texture_desc (line 548) | struct crn_texture_desc { FILE: Texture2DDecoderWrapper/T2DDll.cs class T2DDll (line 3) | internal static class T2DDll FILE: Texture2DDecoderWrapper/TextureDecoder.PInvoke.cs class TextureDecoder (line 5) | unsafe partial class TextureDecoder method DecodeDXT1 (line 8) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeDXT5 (line 12) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodePVRTC (line 16) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeETC1 (line 20) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeETC2 (line 24) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeETC2A1 (line 28) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeETC2A8 (line 32) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeEACR (line 36) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeEACRSigned (line 40) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeEACRG (line 44) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeEACRGSigned (line 48) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeBC4 (line 52) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeBC5 (line 56) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeBC6 (line 60) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeBC7 (line 64) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeATCRGB4 (line 68) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeATCRGBA8 (line 72) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DecodeASTC (line 76) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method DisposeBuffer (line 80) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method UnpackCrunch (line 83) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] method UnpackUnityCrunch (line 86) | [DllImport(T2DDll.DllName, CallingConvention = CallingConvention.Winapi)] FILE: Texture2DDecoderWrapper/TextureDecoder.cs class TextureDecoder (line 7) | public static unsafe partial class TextureDecoder method TextureDecoder (line 10) | static TextureDecoder() method DecodeDXT1 (line 15) | public static bool DecodeDXT1(byte[] data, int width, int height, byte... method DecodeDXT5 (line 26) | public static bool DecodeDXT5(byte[] data, int width, int height, byte... method DecodePVRTC (line 37) | public static bool DecodePVRTC(byte[] data, int width, int height, byt... method DecodeETC1 (line 48) | public static bool DecodeETC1(byte[] data, int width, int height, byte... method DecodeETC2 (line 59) | public static bool DecodeETC2(byte[] data, int width, int height, byte... method DecodeETC2A1 (line 70) | public static bool DecodeETC2A1(byte[] data, int width, int height, by... method DecodeETC2A8 (line 81) | public static bool DecodeETC2A8(byte[] data, int width, int height, by... method DecodeEACR (line 92) | public static bool DecodeEACR(byte[] data, int width, int height, byte... method DecodeEACRSigned (line 103) | public static bool DecodeEACRSigned(byte[] data, int width, int height... method DecodeEACRG (line 114) | public static bool DecodeEACRG(byte[] data, int width, int height, byt... method DecodeEACRGSigned (line 125) | public static bool DecodeEACRGSigned(byte[] data, int width, int heigh... method DecodeBC4 (line 136) | public static bool DecodeBC4(byte[] data, int width, int height, byte[... method DecodeBC5 (line 147) | public static bool DecodeBC5(byte[] data, int width, int height, byte[... method DecodeBC6 (line 158) | public static bool DecodeBC6(byte[] data, int width, int height, byte[... method DecodeBC7 (line 169) | public static bool DecodeBC7(byte[] data, int width, int height, byte[... method DecodeATCRGB4 (line 180) | public static bool DecodeATCRGB4(byte[] data, int width, int height, b... method DecodeATCRGBA8 (line 191) | public static bool DecodeATCRGBA8(byte[] data, int width, int height, ... method DecodeASTC (line 202) | public static bool DecodeASTC(byte[] data, int width, int height, int ... method UnpackCrunch (line 213) | public static byte[] UnpackCrunch(byte[] data) method UnpackUnityCrunch (line 237) | public static byte[] UnpackUnityCrunch(byte[] data)