| 145 | } |
| 146 | |
| 147 | void getStatisticsMessage(char* csMessage) |
| 148 | { |
| 149 | switch (g_StatisticsState) |
| 150 | { |
| 151 | case NOT_COLLECTING: |
| 152 | case SHOULD_COLLECT: |
| 153 | csMessage[0] = 0; |
| 154 | break; |
| 155 | case COLLECTING: |
| 156 | case COLLECTION_ENDED: |
| 157 | const DepthMetaData* pDepthMD = getDepthMetaData(); |
| 158 | sprintf(csMessage, "Collected Statistics for %u frames", g_PixelStatistics[pDepthMD->YOffset()*pDepthMD->FullXRes() + pDepthMD->XOffset()].nCount); |
| 159 | break; |
| 160 | } |
| 161 | } |
no test coverage detected