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

Side by Side Diff: ui/gl/gl_implementation.h

Issue 10392068: ui: Move gl/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac_rel Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gl/gl_fence.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef UI_GFX_GL_GL_IMPLEMENTATION_H_ 5 #ifndef UI_GL_GL_IMPLEMENTATION_H_
6 #define UI_GFX_GL_GL_IMPLEMENTATION_H_ 6 #define UI_GL_GL_IMPLEMENTATION_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/native_library.h" 12 #include "base/native_library.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "ui/gfx/gl/gl_export.h" 14 #include "ui/gl/gl_export.h"
15 #include "ui/gfx/gl/gl_switches.h" 15 #include "ui/gl/gl_switches.h"
16 16
17 namespace gfx { 17 namespace gfx {
18 18
19 class GLContext; 19 class GLContext;
20 20
21 // The GL implementation currently in use. 21 // The GL implementation currently in use.
22 enum GLImplementation { 22 enum GLImplementation {
23 kGLImplementationNone, 23 kGLImplementationNone,
24 kGLImplementationDesktopGL, 24 kGLImplementationDesktopGL,
25 kGLImplementationOSMesaGL, 25 kGLImplementationOSMesaGL,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 // Find a core (non-extension) entry point in the current GL implementation. On 76 // Find a core (non-extension) entry point in the current GL implementation. On
77 // EGL based implementations core entry points will not be queried through 77 // EGL based implementations core entry points will not be queried through
78 // GLGetProcAddressProc. 78 // GLGetProcAddressProc.
79 void* GetGLCoreProcAddress(const char* name); 79 void* GetGLCoreProcAddress(const char* name);
80 80
81 // Find an entry point in the current GL implementation. 81 // Find an entry point in the current GL implementation.
82 void* GetGLProcAddress(const char* name); 82 void* GetGLProcAddress(const char* name);
83 83
84 } // namespace gfx 84 } // namespace gfx
85 85
86 #endif // UI_GFX_GL_GL_IMPLEMENTATION_H_ 86 #endif // UI_GL_GL_IMPLEMENTATION_H_
OLDNEW
« no previous file with comments | « ui/gl/gl_fence.cc ('k') | ui/gl/gl_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698