TextureDescriptorType.cs 188 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu.Image
  2. {
  3. enum TextureDescriptorType
  4. {
  5. Buffer,
  6. LinearColorKey,
  7. Linear,
  8. BlockLinear,
  9. BlockLinearColorKey
  10. }
  11. }