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

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

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 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
« no previous file with comments | « gpu/command_buffer/service/feature_info.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/feature_info.cc
diff --git a/gpu/command_buffer/service/feature_info.cc b/gpu/command_buffer/service/feature_info.cc
index 97514fd4dc603a3f9d6c102b1cf8e4a5385ef91e..cb7efff3c1784e58739d7fc316d6705265f0b9b4 100644
--- a/gpu/command_buffer/service/feature_info.cc
+++ b/gpu/command_buffer/service/feature_info.cc
@@ -130,7 +130,6 @@ FeatureInfo::FeatureFlags::FeatureFlags()
ext_texture_rg(false),
chromium_image_ycbcr_420v(false),
chromium_image_ycbcr_422(false),
- enable_subscribe_uniform(false),
emulate_primitive_restart_fixed_index(false),
ext_render_buffer_format_bgra8888(false),
ext_multisample_compatibility(false),
@@ -168,9 +167,6 @@ void FeatureInfo::InitializeBasicState(const base::CommandLine* command_line) {
feature_flags_.is_swiftshader =
(command_line->GetSwitchValueASCII(switches::kUseGL) == "swiftshader");
- feature_flags_.enable_subscribe_uniform =
- command_line->HasSwitch(switches::kEnableSubscribeUniformExtension);
-
enable_unsafe_es3_apis_switch_ =
command_line->HasSwitch(switches::kEnableUnsafeES3APIs);
@@ -343,10 +339,6 @@ void FeatureInfo::InitializeFeatures() {
// but there is no need to add them to pixel_store validtor.
AddExtensionString("GL_EXT_unpack_subimage");
- if (feature_flags_.enable_subscribe_uniform) {
- AddExtensionString("GL_CHROMIUM_subscribe_uniform");
- }
-
// OES_vertex_array_object is emulated if not present natively,
// so the extension string is always exposed.
AddExtensionString("GL_OES_vertex_array_object");
« no previous file with comments | « gpu/command_buffer/service/feature_info.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698