- Timestamp:
- Feb 9, 2010, 8:24:35 PM (16 years ago)
- Location:
- branches/eam_branches/20091201/ppViz
- Files:
-
- 3 copied
-
. (copied) (copied from trunk/ppViz ) (1 prop)
-
src/ppVizPattern (copied) (copied from trunk/ppViz/src/ppVizPSF )
-
src/ppVizPattern/ppVizPattern.c (copied) (copied from trunk/ppViz/src/ppVizPSF/ppVizPSF.c ) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20091201/ppViz
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/eam_branches/20091113/ppViz 26119-26255 /branches/pap/ppViz 26320
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/eam_branches/20091201/ppViz/src/ppVizPattern/ppVizPattern.c
r26827 r26837 7 7 #include <psmodules.h> 8 8 9 #include "ppVizP SF.h"9 #include "ppVizPattern.h" 10 10 11 11 int main(int argc, char *argv[]) 12 12 { 13 ppVizP SFVersionPrint();13 ppVizPatternVersionPrint(); 14 14 15 ppVizP SFData *data = ppVizPSFDataInit(&argc, argv);15 ppVizPatternData *data = ppVizPatternDataInit(&argc, argv); 16 16 if (!data) { 17 17 psErrorStackPrint(stderr, "Unable to initialise."); … … 19 19 } 20 20 21 if (!ppVizP SFArguments(data, argc, argv)) {21 if (!ppVizPatternArguments(data, argc, argv)) { 22 22 psErrorStackPrint(stderr, "Unable to parse arguments."); 23 23 psFree(data); … … 25 25 } 26 26 27 if (!ppVizP SFCamera(data)) {27 if (!ppVizPatternCamera(data)) { 28 28 psErrorStackPrint(stderr, "Unable to parse camera configuration."); 29 29 psFree(data); … … 31 31 } 32 32 33 if (!ppVizP SFLoop(data)) {33 if (!ppVizPatternLoop(data)) { 34 34 psErrorStackPrint(stderr, "Unable to process data."); 35 35 psFree(data);
Note:
See TracChangeset
for help on using the changeset viewer.
