RtColorState.cs 345 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct RtColorState
  4. {
  5. public GpuVa Address;
  6. public int WidthOrStride;
  7. public int Height;
  8. public RtFormat Format;
  9. public MemoryLayout MemoryLayout;
  10. public int Depth;
  11. public int LayerSize;
  12. }
  13. }