Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18664
Modified Files:
GLView.java
Log Message:
moved some comments
Index: GLView.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/GLView.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** GLView.java 17 Aug 2005 10:18:02 -0000 1.9
--- GLView.java 17 Aug 2005 11:06:47 -0000 1.10
***************
*** 100,103 ****
--- 100,117 ----
glc.repaint();
}
+
+ /**
+ * Repaint the canvas. Will force instant repaint if given true
+ * @param force wether or not to force reapint
+ */
+ public void repaint(boolean force) {
+ if (force) {
+ glc.display();
+ } else {
+ glc.repaint();
+ }
+ }
+
+
/**
|