gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] libvob ./Makefile org/nongnu/libvob/GraphicsAPI...


From: Tuomas J. Lukka
Subject: [Gzz-commits] libvob ./Makefile org/nongnu/libvob/GraphicsAPI...
Date: Tue, 25 Mar 2003 13:23:46 -0500

CVSROOT:        /cvsroot/libvob
Module name:    libvob
Changes by:     Tuomas J. Lukka <address@hidden>        03/03/25 13:23:46

Modified files:
        .              : Makefile 
        org/nongnu/libvob: GraphicsAPI.java 
        org/nongnu/libvob/putil: demo.py 
        test/vob/gl    : bytevector.leak 

Log message:
        gzzclient -> vob.api

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/Makefile.diff?tr1=1.17&tr2=1.18&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/GraphicsAPI.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/putil/demo.py.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/test/vob/gl/bytevector.leak.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: libvob/Makefile
diff -u libvob/Makefile:1.17 libvob/Makefile:1.18
--- libvob/Makefile:1.17        Tue Mar 25 07:04:09 2003
+++ libvob/Makefile     Tue Mar 25 13:23:45 2003
@@ -73,15 +73,15 @@
 test-awt::  # Use: make test TEST=test/gzz/vob/vobmatcher.test, to run a 
single test.
        $(GLLIB) $(JYTHON) test/testutil.py -f GL $(DBG) $(TEST)
 test-gl::
-       $(GLLIB) $(JYTHON) test/testutil.py -Dgzzclient=gl -f AWT $(DBG) jni 
$(TEST)
+       $(GLLIB) $(JYTHON) test/testutil.py -Dvob.api=gl -f AWT $(DBG) jni 
$(TEST)
 
 testbugs-awt::
        $(GLLIB) $(JYTHON) test/testutil.py -f \* $(DBG) $(TEST)
 testbugs-gl::
-       $(GLLIB) $(JYTHON) test/testutil.py -Dgzzclient=gl -f \* $(DBG) jni 
$(TEST)
+       $(GLLIB) $(JYTHON) test/testutil.py -Dvob.api=gl -f \* $(DBG) jni 
$(TEST)
 
 bench-gl::
-       $(GLLIB) $(JYTHON) bench/mark.py -Dgzzclient=gl $(DBG) $(BENCH)
+       $(GLLIB) $(JYTHON) bench/mark.py -Dvob.api=gl $(DBG) $(BENCH)
 
 rundemo::
        $(GLLIB) $(JYTHON) org/nongnu/libvob/putil/demo.py $(DBG) $(DEMO)
Index: libvob/org/nongnu/libvob/GraphicsAPI.java
diff -u libvob/org/nongnu/libvob/GraphicsAPI.java:1.2 
libvob/org/nongnu/libvob/GraphicsAPI.java:1.3
--- libvob/org/nongnu/libvob/GraphicsAPI.java:1.2       Fri Mar  7 06:38:20 2003
+++ libvob/org/nongnu/libvob/GraphicsAPI.java   Tue Mar 25 13:23:46 2003
@@ -35,7 +35,7 @@
  * provide.
  * This is currently a singleton class but that may change in the future.
  * <p>
- * The System property <code>gzzclient</code> sets the API type: either "awt" 
or "gl"
+ * The System property <code>vob.api</code> sets the API type: either "awt" or 
"gl"
  * should be used.
  */
 public abstract class GraphicsAPI {
@@ -45,7 +45,7 @@
     private static String type;
 
     static private void init() {
-       String cl = System.getProperty("gzzclient");
+       String cl = System.getProperty("vob.api");
        if(cl == null || cl.equals("awt")) {
            gfxapi = new org.nongnu.libvob.impl.awt.AWTAPI();
             type = "awt";
Index: libvob/org/nongnu/libvob/putil/demo.py
diff -u libvob/org/nongnu/libvob/putil/demo.py:1.1 
libvob/org/nongnu/libvob/putil/demo.py:1.2
--- libvob/org/nongnu/libvob/putil/demo.py:1.1  Tue Mar 25 07:04:10 2003
+++ libvob/org/nongnu/libvob/putil/demo.py      Tue Mar 25 13:23:46 2003
@@ -55,7 +55,7 @@
 
 
 
-System.setProperty("gzzclient", "gl")
+System.setProperty("vob.api", "gl")
 
 print "ARGV:",sys.argv
 print "DBG:",dbg.short,dbg.long,dbg.all
Index: libvob/test/vob/gl/bytevector.leak
diff -u libvob/test/vob/gl/bytevector.leak:1.1 
libvob/test/vob/gl/bytevector.leak:1.2
--- libvob/test/vob/gl/bytevector.leak:1.1      Wed Mar 12 00:45:22 2003
+++ libvob/test/vob/gl/bytevector.leak  Tue Mar 25 13:23:46 2003
@@ -5,7 +5,7 @@
 gzz.gfx.gl.GL.loadLib()
 gzz.gfx.gl.GL.setDebugVar("JNI.general", 1)
 prop = java.lang.System.getProperties()
-prop.setProperty("gzzclient", "gl")
+prop.setProperty("vob.api", "gl")
 java.lang.System.setProperties(prop)
 
 GL=gzz.gfx.gl.GL




reply via email to

[Prev in Thread] Current Thread [Next in Thread]