BufferSwizzleComponent.cs 260 B

12345678910111213141516
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Buffer swizzle component.
  5. /// </summary>
  6. enum BufferSwizzleComponent
  7. {
  8. SrcX,
  9. SrcY,
  10. SrcZ,
  11. SrcW,
  12. ConstA,
  13. ConstB,
  14. NoWrite
  15. }
  16. }