CopyTexture.cs 577 B

1234567891011121314151617181920
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Texture to texture (with optional resizing) copy parameters.
  5. /// </summary>
  6. struct CopyTexture
  7. {
  8. #pragma warning disable CS0649
  9. public RtFormat Format;
  10. public Boolean32 LinearLayout;
  11. public MemoryLayout MemoryLayout;
  12. public int Depth;
  13. public int Layer;
  14. public int Stride;
  15. public int Width;
  16. public int Height;
  17. public GpuVa Address;
  18. #pragma warning restore CS0649
  19. }
  20. }