Beispiel #1
0
 public GLConstType(GLTypeBase elementType) : base("const " + elementType.Name)
 {
     ElementType = elementType;
 }
Beispiel #2
0
 public GLParameter(GLTypeBase type, string name)
 {
     Type = type;
     Name = name;
 }
Beispiel #3
0
 public GLPointerType(GLTypeBase elementType) : base(elementType.Name + "*")
 {
     ElementType = elementType;
 }