ITextureInfo.cs 183 B

12345678910
  1. using Ryujinx.Graphics.GAL;
  2. namespace Ryujinx.Graphics.OpenGL.Image
  3. {
  4. interface ITextureInfo
  5. {
  6. int Handle { get; }
  7. TextureCreateInfo Info { get; }
  8. }
  9. }