Changeset 661 for abuse/trunk/src/common.h
- Timestamp:
- May 15, 2011, 5:31:42 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/common.h
r574 r661 39 39 static inline float Max(float a, float b) { return a > b ? a : b; } 40 40 41 static inline vec2i Min(vec2i a, vec2i b) { return vec2i(Min(a.x, b.x), Min(a.y, b.y)); } 42 static inline vec2i Max(vec2i a, vec2i b) { return vec2i(Max(a.x, b.x), Max(a.y, b.y)); } 43 41 44 // 42 45 // Byte swapping
Note: See TracChangeset
for help on using the changeset viewer.