===========================================================================
| 373 | |
| 374 | //=========================================================================== |
| 375 | inline float clampZeroOne( const float & x ) |
| 376 | { |
| 377 | if (x < 0.f) return 0.f; |
| 378 | if (x > 1.f) return 1.f; |
| 379 | /* ...... */ return x; |
| 380 | } |
| 381 | |
| 382 | //=========================================================================== |
| 383 | inline uint8_t getCharSetBits(int iChar) |
no outgoing calls
no test coverage detected