using OpenTK.Graphics.OpenGL; namespace Engine.Renderer.Pixel; public interface IPixel { public PixelFormat Format { get; } public PixelType Type { get; } public PixelInternalFormat InternalFormat { get; } public SizedInternalFormat SizedInternalFormat { get; } }