Mercurial > hg > beaglert
diff include/Utilities.h @ 537:bfcbeb437869 API-update
Updated RTAudioSettings with in/out, ported some examples and libpd
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Fri, 24 Jun 2016 01:36:07 +0100 |
parents | 5c8f46fcd4d0 |
children |
line wrap: on
line diff
--- a/include/Utilities.h Thu Jun 23 18:17:35 2016 +0100 +++ b/include/Utilities.h Fri Jun 24 01:36:07 2016 +0100 @@ -42,7 +42,7 @@ /** @} */ /** - * \ingroup wiring + * \cond BIT_FUNCTIONS * * @{ */ @@ -59,7 +59,9 @@ /// Set/clear the given bit in \c word to \c value. #define changeBit(word,bit,value) ((clearBit((word),(bit))) | ((value) << (bit))) -/** @} */ +/** @} + * \endcond + * */ /** * \ingroup iofunctions @@ -295,11 +297,15 @@ static inline float constrain(float x, float min_val, float max_val); /** + * \brief Returns the maximum of two numbers + * * Returns the maximum of two numbers */ static inline float min(float x, float y); /** + * \brief Returns the minimum of two numbers + * * Returns the minimum of two numbers */ static inline float max(float x, float y);