diff options
Diffstat (limited to 'cc/quads/render_pass_id.cc')
| -rw-r--r-- | cc/quads/render_pass_id.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cc/quads/render_pass_id.cc b/cc/quads/render_pass_id.cc index 742c191..0f53e81 100644 --- a/cc/quads/render_pass_id.cc +++ b/cc/quads/render_pass_id.cc @@ -2,11 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "cc/quads/render_pass_id.h" - #include <stddef.h> -#include "base/hash.h" +#include "cc/quads/render_pass_id.h" namespace cc { @@ -14,7 +12,7 @@ void* RenderPassId::AsTracingId() const { static_assert(sizeof(size_t) <= sizeof(void*), // NOLINT "size of size_t should not be greater than that of a pointer"); return reinterpret_cast<void*>( - base::HashInts(layer_id, static_cast<int>(index))); + base::HashPair(layer_id, static_cast<int>(index))); } } // namespace cc |
