IOpenGLContext.cs 171 B

1234567891011
  1. using System;
  2. namespace Ryujinx.Graphics.OpenGL
  3. {
  4. public interface IOpenGLContext : IDisposable
  5. {
  6. void MakeCurrent();
  7. bool HasContext();
  8. }
  9. }