CSPspEmu.Core.Utils.PixelFormatDecoder.Unswizzle C# (CSharp) Method

Unswizzle() public static method

public static Unswizzle ( byte Input, byte Output, int RowWidth, int TextureHeight ) : void
Input byte
Output byte
RowWidth int Width of the texture. In bytes? In pixels? Maybe bytes?
TextureHeight int Height of the texture
return void
        public static unsafe void Unswizzle(byte[] Input, byte[] Output, int RowWidth, int TextureHeight)
        {
            fixed (void* InputPtr = Input)
            fixed (void* OutputPtr = Output)
            {
                Unswizzle(InputPtr, OutputPtr, RowWidth, TextureHeight);
            }
        }

Same methods

PixelFormatDecoder::Unswizzle ( void Input, void Output, int RowWidth, int TextureHeight ) : void