blob: 7557ff6df17cbcaa423f386ac18ad29d97052147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/video/trace_util.h"
#include "base/trace_event/memory_allocator_dump_guid.h"
#include "ui/gl/trace_util.h"
namespace media {
base::trace_event::MemoryAllocatorDumpGuid GetGLTextureClientGUIDForTracing(
uint64_t context_group_tracing_id,
uint32_t texture_id) {
return gl::GetGLTextureClientGUIDForTracing(context_group_tracing_id,
texture_id);
}
} // namespace media
|