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

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

Issue 2121043002: 16 bpp video stream capture, render and WebGL usage - Realsense R200 & SR300 support. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scoping Y8 out. Created 4 years, 2 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 #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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698