| OLD | NEW |
| 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 <memory> |
| 8 #include "platform/PlatformExport.h" | 9 #include "platform/PlatformExport.h" |
| 9 #include "third_party/khronos/GLES2/gl2.h" | 10 #include "third_party/khronos/GLES2/gl2.h" |
| 10 #include "wtf/Allocator.h" | 11 #include "wtf/Allocator.h" |
| 11 #include "wtf/HashSet.h" | 12 #include "wtf/HashSet.h" |
| 12 #include "wtf/Noncopyable.h" | 13 #include "wtf/Noncopyable.h" |
| 13 #include "wtf/text/StringHash.h" | 14 #include "wtf/text/StringHash.h" |
| 14 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
| 15 #include <memory> | |
| 16 | 16 |
| 17 namespace gpu { | 17 namespace gpu { |
| 18 namespace gles2 { | 18 namespace gles2 { |
| 19 class GLES2Interface; | 19 class GLES2Interface; |
| 20 } | 20 } |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace blink { | 23 namespace blink { |
| 24 | 24 |
| 25 class PLATFORM_EXPORT Extensions3DUtil final { | 25 class PLATFORM_EXPORT Extensions3DUtil final { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 gpu::gles2::GLES2Interface* m_gl; | 50 gpu::gles2::GLES2Interface* m_gl; |
| 51 HashSet<String> m_enabledExtensions; | 51 HashSet<String> m_enabledExtensions; |
| 52 HashSet<String> m_requestableExtensions; | 52 HashSet<String> m_requestableExtensions; |
| 53 bool m_isValid; | 53 bool m_isValid; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace blink | 56 } // namespace blink |
| 57 | 57 |
| 58 #endif // Extensions3DUtil_h | 58 #endif // Extensions3DUtil_h |
| OLD | NEW |