示例#1
0
 public virtual void Close()
 {
     if (begun)
     {
         LSystem.Error(this.GetType().Name + " close() without end()");
     }
 }
示例#2
0
 public virtual void End()
 {
     try
     {
         Flush();
     }
     catch (System.Exception ex)
     {
         LSystem.Error("GL error end()", ex);
     }
     finally
     {
         begun = false;
     }
 }
示例#3
0
 public static void E(string msg, params object[] args)
 {
     LSystem.Error(msg, args);
 }
示例#4
0
 public static void E(string msg, System.Exception throwable)
 {
     LSystem.Error(msg, throwable);
 }
示例#5
0
 public static void E(string msg)
 {
     LSystem.Error(msg);
 }