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

Unified Diff: gpu/command_buffer/service/context_group.cc

Issue 2670213005: Hook ANGLE_request_extension up to the passthrough cmd decoder. (Closed)
Patch Set: Fix extension check. 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: gpu/command_buffer/service/context_group.cc
diff --git a/gpu/command_buffer/service/context_group.cc b/gpu/command_buffer/service/context_group.cc
index 291763b0f40c595160674c398c9e30bea742a158..d4da9d09851fcd56668b76d5f66fe5c915742c2c 100644
--- a/gpu/command_buffer/service/context_group.cc
+++ b/gpu/command_buffer/service/context_group.cc
@@ -38,6 +38,8 @@ void GetIntegerv(GLenum pname, uint32_t* var) {
*var = value;
}
+} // namespace anonymous
+
DisallowedFeatures AdjustDisallowedFeatures(
ContextType context_type, const DisallowedFeatures& disallowed_features) {
DisallowedFeatures adjusted_disallowed_features = disallowed_features;
@@ -55,8 +57,6 @@ DisallowedFeatures AdjustDisallowedFeatures(
return adjusted_disallowed_features;
}
-} // namespace anonymous
-
ContextGroup::ContextGroup(
const GpuPreferences& gpu_preferences,
const scoped_refptr<MailboxManager>& mailbox_manager,

Powered by Google App Engine
This is Rietveld 408576698