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

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

Issue 2670213005: Hook ANGLE_request_extension up to the passthrough cmd decoder. (Closed)
Patch Set: Address zmo's comments. Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp b/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
index c15baff9cd520de86eff9fdcc7314f77d44d488a..e9f46598fb6deed5cac370a50de8e2a35d47825d 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
@@ -74,6 +74,10 @@ bool Extensions3DUtil::isExtensionEnabled(const String& name) {
return m_enabledExtensions.contains(name);
}
+bool Extensions3DUtil::isExtensionRequestable(const String& name) {
+ return m_requestableExtensions.contains(name);
+}
+
bool Extensions3DUtil::canUseCopyTextureCHROMIUM(GLenum destTarget,
GLenum destFormat,
GLenum destType,

Powered by Google App Engine
This is Rietveld 408576698