diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-10 19:55:11 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-10 19:58:19 +0200 |
commit | f3516bae2c5b5a5f34cfb6227256e907e7d73807 (patch) | |
tree | d656df36b083d6ae562753dd165f0151bdc007d6 /src/ramps.h | |
parent | whitespace (diff) | |
download | coopgammad-f3516bae2c5b5a5f34cfb6227256e907e7d73807.tar.gz coopgammad-f3516bae2c5b5a5f34cfb6227256e907e7d73807.tar.bz2 coopgammad-f3516bae2c5b5a5f34cfb6227256e907e7d73807.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/ramps.h')
-rw-r--r-- | src/ramps.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ramps.h b/src/ramps.h new file mode 100644 index 0000000..0f1462c --- /dev/null +++ b/src/ramps.h @@ -0,0 +1,58 @@ +/** + * gammad -- Cooperative gamma server + * Copyright (C) 2016 Mattias Andrée (maandree@kth.se) + * + * This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this library. If not, see <http://www.gnu.org/licenses/>. + */ +#include <libgamma.h> + + + +/** + * Gamma ramps union for all + * lbigamma gamma ramps types + */ +union gamma_ramps +{ + /** + * Ramps with 8-bit value + */ + libgamma_gamma_ramps8_t u8; + + /** + * Ramps with 16-bit value + */ + libgamma_gamma_ramps16_t u16; + + /** + * Ramps with 32-bit value + */ + libgamma_gamma_ramps32_t u32; + + /** + * Ramps with 64-bit value + */ + libgamma_gamma_ramps64_t u64; + + /** + * Ramps with `float` value + */ + libgamma_gamma_rampsf_t f; + + /** + * Ramps with `double` value + */ + libgamma_gamma_rampsd_t d; +}; + |