aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-helper.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-31 05:31:57 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-31 05:31:59 +0200
commit37e359147930ce22f8cd8d3e462026db95457cd0 (patch)
tree82349ba7326bb1efe2042ec4a265596d5c77c93d /src/gamma-helper.c
parentadd the names of the connector types to their doc (diff)
downloadlibgamma-37e359147930ce22f8cd8d3e462026db95457cd0.tar.gz
libgamma-37e359147930ce22f8cd8d3e462026db95457cd0.tar.bz2
libgamma-37e359147930ce22f8cd8d3e462026db95457cd0.tar.xz
m translate_from_64
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/gamma-helper.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gamma-helper.c b/src/gamma-helper.c
index 69f81ea..5c538e7 100644
--- a/src/gamma-helper.c
+++ b/src/gamma-helper.c
@@ -89,14 +89,12 @@ static void translate_from_64(signed depth, size_t n, libgamma_gamma_ramps_any_t
{
case 16:
for (i = 0; i < n; i++)
- in[i] >>= (64 - depth - 1),
- out.bits16.red[i] = (uint16_t)((in[i] & 1) | (in[i] >> 1));
+ out.bits16.red[i] = (uint64_t)(in[i] / 0x0001000100010001ULL);
break;
case 32:
for (i = 0; i < n; i++)
- in[i] >>= (64 - depth - 1),
- out.bits32.red[i] = (uint32_t)((in[i] & 1) | (in[i] >> 1));
+ out.bits32.red[i] = (uint64_t)(in[i] / 0x0000000100000001ULL);
break;
case 64: