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 #include "platform/graphics/gpu/Extensions3DUtil.h" | 5 #include "platform/graphics/gpu/Extensions3DUtil.h" |
6 | 6 |
7 #include "gpu/command_buffer/client/gles2_interface.h" | 7 #include "gpu/command_buffer/client/gles2_interface.h" |
| 8 #include "third_party/khronos/GLES2/gl2ext.h" |
| 9 #include "third_party/khronos/GLES3/gl3.h" |
8 #include "wtf/PtrUtil.h" | 10 #include "wtf/PtrUtil.h" |
9 #include "wtf/text/CString.h" | 11 #include "wtf/text/CString.h" |
10 #include "wtf/text/StringHash.h" | 12 #include "wtf/text/StringHash.h" |
11 #include <memory> | 13 #include <memory> |
12 | 14 |
13 namespace blink { | 15 namespace blink { |
14 | 16 |
15 namespace { | 17 namespace { |
16 | 18 |
17 void splitStringHelper(const String& str, HashSet<String>& set) { | 19 void splitStringHelper(const String& str, HashSet<String>& set) { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 return m_enabledExtensions.contains(name); | 74 return m_enabledExtensions.contains(name); |
73 } | 75 } |
74 | 76 |
75 bool Extensions3DUtil::canUseCopyTextureCHROMIUM(GLenum destTarget, | 77 bool Extensions3DUtil::canUseCopyTextureCHROMIUM(GLenum destTarget, |
76 GLenum destFormat, | 78 GLenum destFormat, |
77 GLenum destType, | 79 GLenum destType, |
78 GLint level) { | 80 GLint level) { |
79 // TODO(zmo): restriction of (RGB || RGBA)/UNSIGNED_BYTE/(Level 0) should be l
ifted when | 81 // TODO(zmo): restriction of (RGB || RGBA)/UNSIGNED_BYTE/(Level 0) should be l
ifted when |
80 // GLES2Interface::CopyTextureCHROMIUM(...) are fully functional. | 82 // GLES2Interface::CopyTextureCHROMIUM(...) are fully functional. |
81 if (destTarget == GL_TEXTURE_2D && | 83 if (destTarget == GL_TEXTURE_2D && |
82 (destFormat == GL_RGB || destFormat == GL_RGBA) && | 84 ((destType == GL_UNSIGNED_BYTE && |
83 destType == GL_UNSIGNED_BYTE && !level) | 85 (destFormat == GL_RGB || destFormat == GL_RGBA)) || |
| 86 (destType == GL_FLOAT && |
| 87 ((destFormat == GL_RGBA && |
| 88 supportsExtension("GL_CHROMIUM_color_buffer_float_rgba")) || |
| 89 (destFormat == GL_RGB && |
| 90 supportsExtension("GL_CHROMIUM_color_buffer_float_rgb"))))) && |
| 91 !level) |
84 return true; | 92 return true; |
85 return false; | 93 return false; |
86 } | 94 } |
87 | 95 |
88 } // namespace blink | 96 } // namespace blink |
OLD | NEW |