IPlatformGraphicsOpenGlContextFactory.cs 186 B

12345678
  1. using System.Collections.Generic;
  2. namespace Avalonia.OpenGL;
  3. public interface IPlatformGraphicsOpenGlContextFactory
  4. {
  5. IGlContext CreateContext(IEnumerable<GlVersion>? versions);
  6. }