Chromium Code Reviews

Side by Side Diff: media/tools/shader_bench/window.cc

Issue 4873002: Benchmark tool for GPU-accelerated video rendering (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « media/tools/shader_bench/window.h ('k') | media/tools/shader_bench/window_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "media/tools/shader_bench/window.h"
6
7 #include "base/task.h"
8
9 namespace media {
10
11 Window::Window(int width, int height)
12 : done_task_(NULL),
13 painter_(NULL),
14 limit_(0),
15 count_(0),
16 running_(false) {
17 window_handle_ = CreateNativeWindow(width, height);
18 }
19
20 } // namespace media
OLDNEW
« no previous file with comments | « media/tools/shader_bench/window.h ('k') | media/tools/shader_bench/window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine