OLD | NEW |
---|---|
(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 namespace media { | |
8 | |
9 Window::Window(int width, int height) | |
10 : done_task_(0), | |
Alpha Left Google
2010/11/29 20:06:13
done_task_(NULL),
vrk (LEFT CHROMIUM)
2010/11/30 01:21:35
Done.
| |
11 painter_(0), | |
Alpha Left Google
2010/11/29 20:06:13
painter(NULL),
vrk (LEFT CHROMIUM)
2010/11/30 01:21:35
Done.
| |
12 limit_(0), | |
13 count_(0), | |
14 running_(false) { | |
15 window_handle_ = CreateNativeWindow(width, height); | |
16 } | |
17 | |
18 } // namespace media | |
OLD | NEW |