This commit is contained in:
2024-12-04 22:35:04 +03:00
commit 3f1740f41f
43 changed files with 1757 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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; }
}