1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
gpu / ipc / common / gpu_client_ids.h [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_IPC_COMMON_GPU_CLIENT_IDS_H_
#define GPU_IPC_COMMON_GPU_CLIENT_IDS_H_
namespace gpu {
// The list of client id constants used to identify unique GPU clients. In the
// general case, GPU clients are assigned unique IDs in the browser. But these
// special constants are used for particular clients that should always be
// assigned the same ID.
// The ID used by the display compositor running in the GPU process.
constexpr int32_t kDisplayCompositorClientId = -1;
// The ID used for storing shaders created by skia in the GPU process. Note that
// this ID doesn't correspond to a real Gpu client/channel, but is required so
// we can use the same disk caching system for shaders and use a unique
// namespace for these shaders.
constexpr int32_t kGrShaderCacheClientId = -2;
// The ID used for storing dawn shaders created by graphite dawn in the GPU
// process. Note that this ID doesn't correspond to a real Gpu client/channel,
// but is required so we can use the same disk caching system for shaders and
// use a unique namespace for these shaders.
constexpr int32_t kGraphiteDawnClientId = -3;
// This ID is used for all the renderer/browser clients which will be using
// MappabelSharedImages.
// TODO(crbug.com/40283108) : Use of ClientId by MappableSI will go away once we
// stop using GpuMemoryBufferFactory in service side to create and cache GMBs.
constexpr int32_t kMappableSIClientId = -4;
inline bool IsReservedClientId(int32_t client_id) {
return client_id < 0;
}
} // namespace gpu
#endif // GPU_IPC_COMMON_GPU_CLIENT_IDS_H_