diff options
| author | 2015-05-18 21:21:33 -0700 | |
|---|---|---|
| committer | 2015-05-22 15:51:18 -0700 | |
| commit | 05dc633a8c35221ce8d6abe6ddf027f8b0bab6c2 (patch) | |
| tree | d080c1efd3b928bda551cb9eee304547e66a4351 /src/common/math_util.h | |
| parent | INI hw/sw renderer toggle (diff) | |
| download | yuzu-05dc633a8c35221ce8d6abe6ddf027f8b0bab6c2.tar.gz yuzu-05dc633a8c35221ce8d6abe6ddf027f8b0bab6c2.tar.xz yuzu-05dc633a8c35221ce8d6abe6ddf027f8b0bab6c2.zip | |
OpenGL renderer
Diffstat (limited to '')
| -rw-r--r-- | src/common/math_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 0b1400b41..4b0910741 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h | |||
| @@ -11,6 +11,10 @@ | |||
| 11 | namespace MathUtil | 11 | namespace MathUtil |
| 12 | { | 12 | { |
| 13 | 13 | ||
| 14 | inline bool IntervalsIntersect(unsigned start0, unsigned length0, unsigned start1, unsigned length1) { | ||
| 15 | return (std::max(start0, start1) <= std::min(start0 + length0, start1 + length1)); | ||
| 16 | } | ||
| 17 | |||
| 14 | template<typename T> | 18 | template<typename T> |
| 15 | inline T Clamp(const T val, const T& min, const T& max) | 19 | inline T Clamp(const T val, const T& min, const T& max) |
| 16 | { | 20 | { |