Ejemplo n.º 1
0
 public Uniform(int location, UniformDataType type)
 {
     this.location = location;
     this.type     = type;
 }
Ejemplo n.º 2
0
 public void AddUniform(string name, int location, UniformDataType type)
 {
     EngineCore.CheckDuplicateName(Uniforms.Keys, name);
     Uniforms.Add(name, new Uniform(location, type));
     UniformsFilled.Add(name, false);
 }