[Tizen] Change VAO hash value function 72/306672/1
authorEunki Hong <eunkiki.hong@samsung.com>
Wed, 20 Dec 2023 22:56:35 +0000 (07:56 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Mon, 26 Feb 2024 03:44:17 +0000 (12:44 +0900)
commitba335126885e9b82a7017ece63f32bc8eb8200c9
tree569a2ee925c0a5687d9ea628a8226c0f99b7442f
parentfef5a4aa14a9db372a5eb050b39a1010207857ac
[Tizen] Change VAO hash value function

Since std::hash<uint32_t>{}(i); just return itself,
we need to make some other method to calculate hash of location.

For example, 0 location doesn't have any mean.
and location with 1, 3 will collision as location 2.

To avoid this hash collision, let we change some hash generate method.

  v = i + 1;
  hash += v << 24;
  v *= v;
  v ^= i;
  hash += v << 16;
  v *= v;
  hash += v;

Note that if we skip v ^= i; operation, collision occured when location is
near 13.

Change-Id: Ie081d9a5e8895988ca7183dfc860176b69c4e337
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
dali/internal/graphics/gles-impl/gles-context.cpp