]> source.dussan.org Git - nextcloud-server.git/commit
[Avatars] Calculate 'sane' hue precissions
authorRoeland Jago Douma <rullzer@owncloud.com>
Tue, 22 Dec 2015 10:07:33 +0000 (11:07 +0100)
committerRoeland Jago Douma <rullzer@owncloud.com>
Thu, 24 Dec 2015 09:50:12 +0000 (10:50 +0100)
commit2fc458479e289e5157864f3ed817bba179461e2d
treeb569c7fe0caa0c6095ad74339181efd2f373e30e
parent9cdc3f0558b8c278e91037c2330b876da7ca99e2
[Avatars] Calculate 'sane' hue precissions

We used to get the numeric value of the entrire md5 string which is a
128bit integer. We would then devide this by the maxval of a 128bit int.

There is no need for such huge computations. As we just require a value
between 0 and 255. Thus using two 16 bit values is more than enough to
get the precision we need. By just taking the MSB we get nearly
identical results.
core/js/placeholder.js