TextureDimensions.cs 184 B

12345678910
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. enum TextureDimensions
  4. {
  5. Texture1D = 0,
  6. Texture2D = 1,
  7. Texture3D = 2,
  8. TextureCube = 3
  9. }
  10. }