13 lines
No EOL
414 B
C#
13 lines
No EOL
414 B
C#
using OpenTK.Graphics.OpenGL4;
|
|
|
|
namespace SM.OGL.Texture
|
|
{
|
|
public abstract class TextureBase : GLObject
|
|
{
|
|
protected override bool AutoCompile { get; } = true;
|
|
public override ObjectLabelIdentifier TypeIdentifier { get; } = ObjectLabelIdentifier.Texture;
|
|
|
|
public abstract TextureMinFilter Filter { get; set; }
|
|
public abstract TextureWrapMode WrapMode { get; set; }
|
|
}
|
|
} |