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

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

Issue 7718020: Initial checkin of the compositor_model_bench tool, which simulates the GPU demands of Chromium's... (Closed) Base URL: http://src.chromium.org/svn/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
Index: gpu/tools/compositor_model_bench/render_models.h
===================================================================
--- gpu/tools/compositor_model_bench/render_models.h (revision 0)
+++ gpu/tools/compositor_model_bench/render_models.h (revision 0)
@@ -0,0 +1,42 @@
+// 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.
+
+// Define the interface for a generic simulation, and a factory method for
+// instantiating different models.
+
+#ifndef GPU_TOOLS_COMPOSITOR_MODEL_BENCH_RENDER_MODELS_H_
+#define GPU_TOOLS_COMPOSITOR_MODEL_BENCH_RENDER_MODELS_H_
+
+#include "gpu/tools/compositor_model_bench/render_tree.h"
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+
+enum RenderModel {
+ ForwardRenderModel
+};
+
+const char* ModelToString(RenderModel m);
+
+class RenderModelSimulator {
+ public:
+ virtual ~RenderModelSimulator();
+ virtual void Update() = 0;
+ virtual void Resize(int width, int height) = 0;
+
+ protected:
+ explicit RenderModelSimulator(RenderNode* root);
+ scoped_ptr<RenderNode> root_;
+
+ private:
+ DISALLOW_IMPLICIT_CONSTRUCTORS(RenderModelSimulator);
+};
+
+RenderModelSimulator* ConstructSimulationModel(RenderModel model,
+ RenderNode* render_tree_root,
+ int window_width,
+ int window_height);
+
+#endif // GPU_TOOLS_COMPOSITOR_MODEL_BENCH_RENDER_MODELS_H_
+
« no previous file with comments | « gpu/tools/compositor_model_bench/render_model_utils.cc ('k') | gpu/tools/compositor_model_bench/render_models.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698