Changeset 4802 for nanovis/branches/1.1/nanovis.h
- Timestamp:
- Dec 1, 2014, 4:09:11 AM (10 years ago)
- Location:
- nanovis/branches/1.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
nanovis/branches/1.1
- Property svn:mergeinfo changed
/nanovis/trunk (added) merged: 4794
- Property svn:mergeinfo changed
-
nanovis/branches/1.1/nanovis.h
r4617 r4802 20 20 #include <md5.h> 21 21 #include <GL/glew.h> 22 #include <sys/types.h> // For pid_t 23 #include <sys/time.h> // For struct timeval 22 24 23 25 #include <math.h> … … 33 35 #include "config.h" 34 36 35 #define NANOVIS_VERSION "1.1. 1"37 #define NANOVIS_VERSION "1.1.2" 36 38 37 39 //defines for the image based flow visualization … … 80 82 }; 81 83 84 typedef struct { 85 pid_t pid; 86 size_t nFrames; /**< # of frames sent to client. */ 87 size_t nBytes; /**< # of bytes for all frames. */ 88 size_t nCommands; /**< # of commands executed */ 89 double cmdTime; /**< Elasped time spend executing 90 * commands. */ 91 struct timeval start; /**< Start of elapsed time. */ 92 } Stats; 93 82 94 typedef std::string TransferFunctionId; 83 95 typedef std::string VolumeId; … … 161 173 162 174 static FILE *stdin, *logfile, *recfile; 175 static Stats stats; 163 176 static int statsFile; 164 177 static unsigned int flags; 165 178 static bool debugFlag; 166 179 static bool axisOn; 167 static struct timeval startTime; ///< Start of elapsed time.168 180 169 181 static int winWidth; ///< Width of the render window
Note: See TracChangeset
for help on using the changeset viewer.