/// <summary>
 /// Initializes a new instance of the <see cref="ShaderProgram"/> class.
 /// </summary>
 internal ShaderProgram()
 {
     Vao = new VAO();
     _shaderProgramID = GL.CreateProgram();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ShaderProgram"/> class.
 /// </summary>
 internal ShaderProgram()
 {
   Vao = new VAO();
   _shaderProgramID = GL.CreateProgram();
 }