| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "app/gfx/gl/gl_context.h" | |
| 6 #include "base/at_exit.h" | 5 #include "base/at_exit.h" |
| 7 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 8 #include "base/logging.h" | 7 #include "base/logging.h" |
| 9 #include "gpu/demos/framework/window.h" | 8 #include "gpu/demos/framework/window.h" |
| 9 #include "ui/gfx/gl/gl_context.h" |
| 10 | 10 |
| 11 #if defined(OS_LINUX) | 11 #if defined(OS_LINUX) |
| 12 #include <gtk/gtk.h> | 12 #include <gtk/gtk.h> |
| 13 #endif // OS_LINUX | 13 #endif // OS_LINUX |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 static const int kWindowWidth = 512; | 16 static const int kWindowWidth = 512; |
| 17 static const int kWindowHeight = 512; | 17 static const int kWindowHeight = 512; |
| 18 } // namespace. | 18 } // namespace. |
| 19 | 19 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 gfx::GLContext::InitializeOneOff(); | 31 gfx::GLContext::InitializeOneOff(); |
| 32 | 32 |
| 33 gpu::demos::Window window; | 33 gpu::demos::Window window; |
| 34 CHECK(window.Init(kWindowWidth, kWindowHeight)); | 34 CHECK(window.Init(kWindowWidth, kWindowHeight)); |
| 35 | 35 |
| 36 window.MainLoop(); | 36 window.MainLoop(); |
| 37 return EXIT_SUCCESS; | 37 return EXIT_SUCCESS; |
| 38 } | 38 } |
| 39 | 39 |
| OLD | NEW |