Changeset 1298 for trunk/psLib/src/math/psStats.c
- Timestamp:
- Jul 27, 2004, 9:51:55 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psStats.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psStats.c
r1293 r1298 1804 1804 1805 1805 // XXX: Should we abort if (stats->min == stats->max)? 1806 if (stats->min >= stats->max) { 1806 if ((stats->options & PS_STAT_USE_RANGE) && 1807 (stats->min >= stats->max)) { 1807 1808 psAbort(__func__, "psVectorStats() called with range: %f to %f\n", 1808 1809 stats->min, stats->max); 1809 1810 } 1810 1811 1812 1811 1813 1812 PS_CHECK_VECTOR_TYPE(in, PS_TYPE_F32);
Note:
See TracChangeset
for help on using the changeset viewer.
