Added missing summeries #1
This commit is contained in:
parent
03d99ea28e
commit
8665b5b709
104 changed files with 1165 additions and 821 deletions
|
|
@ -1,7 +1,6 @@
|
|||
#region usings
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using OpenTK.Graphics.OpenGL4;
|
||||
using SM.OGL.Mesh;
|
||||
|
||||
|
|
@ -15,7 +14,7 @@ namespace SM.OGL.Shaders
|
|||
public abstract class GenericShader : GLObject
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override bool AutoCompile { get; } = true;
|
||||
protected override bool AutoCompile { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Contains the different files for the shader.
|
||||
|
|
@ -97,7 +96,6 @@ namespace SM.OGL.Shaders
|
|||
|
||||
ShaderFileFiles.Append(this);
|
||||
GL.LinkProgram(_id);
|
||||
Name(GetType().Name);
|
||||
ShaderFileFiles.Detach(this);
|
||||
|
||||
Uniforms = new UniformCollection {ParentShader = this};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue