blob: bbbfac6cda64845392370af38f3b940e0de91d81 (
plain)
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
|
// Copyright (c) 2011 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 "gpu/tools/compositor_model_bench/render_models.h"
#include <string>
#include "gpu/tools/compositor_model_bench/forward_render_model.h"
const char* ModelToString(RenderModel m) {
switch (m) {
case ForwardRenderModel:
return "Forward Rendering";
default:
return "(unknown render model name)";
}
}
RenderModelSimulator::RenderModelSimulator(RenderNode* root) : root_(root) {
}
RenderModelSimulator::~RenderModelSimulator() {
}
RenderModelSimulator* ConstructSimulationModel(RenderModel model,
RenderNode* render_tree_root,
int window_width,
int window_height) {
switch (model) {
case ForwardRenderModel:
return new ForwardRenderSimulator(render_tree_root,
window_width,
window_height);
default:
LOG(ERROR) << "Unrecognized render model. "
"If we know its name, then it's..." << ModelToString(model);
return 0;
}
}
|