diff options
author | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-03 17:02:27 +0000 |
---|---|---|
committer | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-03 17:02:27 +0000 |
commit | 84352455e708fc771809f34476d4db9ca79e4bc9 (patch) | |
tree | b47b875ea7ade05db1d924ddc48f1c8f3c6f97ea /gpu/demos/framework/window_linux.cc | |
parent | 882f0ccbf250af3ff242da94706f26bb2f09c5b0 (diff) | |
download | chromium_src-84352455e708fc771809f34476d4db9ca79e4bc9.zip chromium_src-84352455e708fc771809f34476d4db9ca79e4bc9.tar.gz chromium_src-84352455e708fc771809f34476d4db9ca79e4bc9.tar.bz2 |
Changes necessary to compile gpu demos on linux. It is not functional yet just compiling.
BUG=26099
Review URL: http://codereview.chromium.org/552240
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/demos/framework/window_linux.cc')
-rw-r--r-- | gpu/demos/framework/window_linux.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gpu/demos/framework/window_linux.cc b/gpu/demos/framework/window_linux.cc new file mode 100644 index 0000000..4f07a24 --- /dev/null +++ b/gpu/demos/framework/window_linux.cc @@ -0,0 +1,24 @@ +// Copyright (c) 2010 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/demos/framework/window.h" + +namespace gpu { +namespace demos { + +void Window::MainLoop() { +} + +gfx::NativeWindow Window::CreateNativeWindow(const wchar_t* title, + int width, int height) { + return NULL; +} + +gfx::PluginWindowHandle Window::PluginWindow(gfx::NativeWindow hwnd) { + return gfx::kNullPluginWindow; +} + +} // namespace demos +} // namespace gpu + |