gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] gzz ./TODO gfx/libcallgl/box.callgl gfx/libcall...


From: Janne V. Kujala
Subject: [Gzz-commits] gzz ./TODO gfx/libcallgl/box.callgl gfx/libcall...
Date: Wed, 04 Sep 2002 09:09:28 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Janne V. Kujala <address@hidden>        02/09/04 09:09:28

Modified files:
        .              : TODO 
        gfx/libcallgl  : box.callgl callgl.cxx 

Log message:
        Make callgl understand # -comments

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/TODO.diff?tr1=1.73&tr2=1.74&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gfx/libcallgl/box.callgl.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gfx/libcallgl/callgl.cxx.diff?tr1=1.7&tr2=1.8&r1=text&r2=text

Patches:
Index: gzz/TODO
diff -c gzz/TODO:1.73 gzz/TODO:1.74
*** gzz/TODO:1.73       Wed Sep  4 09:07:52 2002
--- gzz/TODO    Wed Sep  4 09:09:27 2002
***************
*** 207,213 ****
  tjl: make creating text vobs from jython faster
  
  anybody:
!     - make callgl understand '#' -comments
  
  
  -------------------------------------------
--- 207,213 ----
  tjl: make creating text vobs from jython faster
  
  anybody:
!     - comment paperlib callgl code using '#' -comments
  
  
  -------------------------------------------
Index: gzz/gfx/libcallgl/box.callgl
diff -c gzz/gfx/libcallgl/box.callgl:1.1 gzz/gfx/libcallgl/box.callgl:1.2
*** gzz/gfx/libcallgl/box.callgl:1.1    Tue Aug  6 12:27:20 2002
--- gzz/gfx/libcallgl/box.callgl        Wed Sep  4 09:09:27 2002
***************
*** 1,3 ****
--- 1,4 ----
+ # Draw a box
  Color 1 1 1
  LineWidth 3
  Begin LINE_LOOP
Index: gzz/gfx/libcallgl/callgl.cxx
diff -c gzz/gfx/libcallgl/callgl.cxx:1.7 gzz/gfx/libcallgl/callgl.cxx:1.8
*** gzz/gfx/libcallgl/callgl.cxx:1.7    Tue Sep  3 06:14:47 2002
--- gzz/gfx/libcallgl/callgl.cxx        Wed Sep  4 09:09:27 2002
***************
*** 86,91 ****
--- 86,94 ----
        vector<string> v = split(s);
        
        if (v.size() < 1) return true;
+ 
+       // Ignore lines where the first splitted "word" starts with a '#'
+       if (v[0][0] == '#') return true;
   
        if (checkfunc(v, "Enable", 1)) {
          glEnable(getToken(v[1]));




reply via email to

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