Added summeries to SM.OGL
This commit is contained in:
parent
2aa12f8d25
commit
16366fa015
15 changed files with 363 additions and 27 deletions
|
|
@ -2,12 +2,24 @@
|
|||
|
||||
namespace SM.OGL.Texture
|
||||
{
|
||||
/// <summary>
|
||||
/// Works as a basis for textures.
|
||||
/// </summary>
|
||||
public abstract class TextureBase : GLObject
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override bool AutoCompile { get; } = true;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override ObjectLabelIdentifier TypeIdentifier { get; } = ObjectLabelIdentifier.Texture;
|
||||
|
||||
/// <summary>
|
||||
/// The texture filter.
|
||||
/// </summary>
|
||||
public abstract TextureMinFilter Filter { get; set; }
|
||||
/// <summary>
|
||||
/// The wrap mode.
|
||||
/// </summary>
|
||||
public abstract TextureWrapMode WrapMode { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue