12 lines
282 B
C#
12 lines
282 B
C#
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; }
|
|
} |