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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.h

Issue 1950763002: Remove abstractions around GLuint and GL constants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 Extensions3DUtil_h 5 #ifndef Extensions3DUtil_h
6 #define Extensions3DUtil_h 6 #define Extensions3DUtil_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/GraphicsTypes3D.h"
10 #include "third_party/khronos/GLES2/gl2.h" 9 #include "third_party/khronos/GLES2/gl2.h"
11 #include "third_party/khronos/GLES2/gl2ext.h"
12 #include "wtf/Allocator.h" 10 #include "wtf/Allocator.h"
13 #include "wtf/HashSet.h" 11 #include "wtf/HashSet.h"
14 #include "wtf/Noncopyable.h" 12 #include "wtf/Noncopyable.h"
15 #include "wtf/text/StringHash.h" 13 #include "wtf/text/StringHash.h"
16 #include "wtf/text/WTFString.h" 14 #include "wtf/text/WTFString.h"
17 15
18 namespace gpu { 16 namespace gpu {
19 namespace gles2 { 17 namespace gles2 {
20 class GLES2Interface; 18 class GLES2Interface;
21 } 19 }
(...skipping 23 matching lines...) Expand all
45 43
46 gpu::gles2::GLES2Interface* m_gl; 44 gpu::gles2::GLES2Interface* m_gl;
47 HashSet<String> m_enabledExtensions; 45 HashSet<String> m_enabledExtensions;
48 HashSet<String> m_requestableExtensions; 46 HashSet<String> m_requestableExtensions;
49 bool m_isValid; 47 bool m_isValid;
50 }; 48 };
51 49
52 } // namespace blink 50 } // namespace blink
53 51
54 #endif // Extensions3DUtil_h 52 #endif // Extensions3DUtil_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698