aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Texture/TextureWriter.cs
blob: 16e78c56f3b72d26340787aacff63efd4720f7b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using ChocolArm64.Memory;
using Ryujinx.Graphics.Gal;
using Ryujinx.Graphics.Memory;

namespace Ryujinx.Graphics.Texture
{
    static class TextureWriter
    {
        public unsafe static void Write(IAMemory Memory, TextureInfo Texture, byte[] Data)
        {
            ISwizzle Swizzle = TextureHelper.GetSwizzle(Texture, 1, 4);

            (AMemory CpuMem, long Position) = TextureHelper.GetMemoryAndPosition(
                Memory,
                Texture.Position);

            fixed (byte* BuffPtr = Data)
            {
                long InOffs = 0;

                for (int Y = 0; Y < Texture.Height; Y++)
                for (int X = 0; X < Texture.Width;  X++)
                {
                    long Offset = (uint)Swizzle.GetSwizzleOffset(X, Y);

                    int Pixel = *(int*)(BuffPtr + InOffs);

                    CpuMem.WriteInt32(Position + Offset, Pixel);

                    InOffs += 4;
                }
            }
        }
    }
}