Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(780)

Unified Diff: gpu/tools/compositor_model_bench/render_models.cc

Issue 7792016: Revert 98706 - Initial checkin of the compositor_model_bench tool (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/tools/compositor_model_bench/render_models.h ('k') | gpu/tools/compositor_model_bench/render_tree.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/tools/compositor_model_bench/render_models.cc
===================================================================
--- gpu/tools/compositor_model_bench/render_models.cc (revision 98709)
+++ gpu/tools/compositor_model_bench/render_models.cc (working copy)
@@ -1,41 +0,0 @@
-// 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;
- }
-}
-
« no previous file with comments | « gpu/tools/compositor_model_bench/render_models.h ('k') | gpu/tools/compositor_model_bench/render_tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698