forked from crosswalk-project/chromium-crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpu_conversions.cc
46 lines (40 loc) · 2.16 KB
/
gpu_conversions.cc
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
43
44
45
46
// Copyright 2015 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 "cc/proto/gpu_conversions.h"
#include "base/logging.h"
#include "cc/proto/memory_allocation.pb.h"
#include "gpu/command_buffer/common/gpu_memory_allocation.h"
namespace cc {
proto::MemoryAllocation::PriorityCutoff MemoryAllocationPriorityCutoffToProto(
const gpu::MemoryAllocation::PriorityCutoff& priority_cutoff) {
switch (priority_cutoff) {
case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING:
return proto::MemoryAllocation_PriorityCutoff_ALLOW_NOTHING;
case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_REQUIRED_ONLY:
return proto::MemoryAllocation_PriorityCutoff_ALLOW_REQUIRED_ONLY;
case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NICE_TO_HAVE:
return proto::MemoryAllocation_PriorityCutoff_ALLOW_NICE_TO_HAVE;
case gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_EVERYTHING:
return proto::MemoryAllocation_PriorityCutoff_ALLOW_EVERYTHING;
}
return proto::MemoryAllocation_PriorityCutoff_UNKNOWN;
}
gpu::MemoryAllocation::PriorityCutoff MemoryAllocationPriorityCutoffFromProto(
const proto::MemoryAllocation::PriorityCutoff& priority_cutoff) {
switch (priority_cutoff) {
case proto::MemoryAllocation_PriorityCutoff_ALLOW_NOTHING:
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING;
case proto::MemoryAllocation_PriorityCutoff_ALLOW_REQUIRED_ONLY:
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_REQUIRED_ONLY;
case proto::MemoryAllocation_PriorityCutoff_ALLOW_NICE_TO_HAVE:
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NICE_TO_HAVE;
case proto::MemoryAllocation_PriorityCutoff_ALLOW_EVERYTHING:
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_EVERYTHING;
case proto::MemoryAllocation_PriorityCutoff_UNKNOWN:
NOTREACHED() << "Received MemoryAllocation::PriorityCutoff_UNKNOWN";
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_LAST;
}
return gpu::MemoryAllocation::PriorityCutoff::CUTOFF_ALLOW_NOTHING;
}
} // namespace cc