Revision: 55584
          http://sourceforge.net/p/brlcad/code/55584
Author:   carlmoore
Date:     2013-05-29 17:52:07 +0000 (Wed, 29 May 2013)
Log Message:
-----------
remove high-res ('-s 1024' replaces it), and add h and ? for help)

Modified Paths:
--------------
    brlcad/trunk/src/util/bwscale.c

Modified: brlcad/trunk/src/util/bwscale.c
===================================================================
--- brlcad/trunk/src/util/bwscale.c     2013-05-29 17:43:12 UTC (rev 55583)
+++ brlcad/trunk/src/util/bwscale.c     2013-05-29 17:52:07 UTC (rev 55584)
@@ -60,7 +60,7 @@
 
 
 static char usage[] = "\
-Usage: bwscale [-h] [-r] [-s squareinsize] [-w inwidth] [-n inheight]\n\
+Usage: bwscale [-r] [-s squareinsize] [-w inwidth] [-n inheight]\n\
        [-S squareoutsize] [-W outwidth] [-N outheight] [in.bw] > out.bw\n";
 
 static int
@@ -68,16 +68,12 @@
 {
     int c;
 
-    while ((c = bu_getopt(argc, argv, "rhs:w:n:S:W:N:")) != -1) {
+    while ((c = bu_getopt(argc, argv, "rs:w:n:S:W:N:h?")) != -1) {
        switch (c) {
            case 'r':
                /* pixel replication */
                rflag = 1;
                break;
-           case 'h':
-               /* high-res */
-               inx = iny = 1024;
-               break;
            case 'S':
                /* square size */
                outx = outy = atoi(bu_optarg);

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to