summaryrefslogtreecommitdiffstats
path: root/cc/quads/render_pass_id.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/quads/render_pass_id.cc')
-rw-r--r--cc/quads/render_pass_id.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/cc/quads/render_pass_id.cc b/cc/quads/render_pass_id.cc
index 0f53e81..742c191 100644
--- a/cc/quads/render_pass_id.cc
+++ b/cc/quads/render_pass_id.cc
@@ -2,9 +2,11 @@
// 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 "cc/quads/render_pass_id.h"
+#include "base/hash.h"
namespace cc {
@@ -12,7 +14,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::HashPair(layer_id, static_cast<int>(index)));
+ base::HashInts(layer_id, static_cast<int>(index)));
}
} // namespace cc