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

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

Issue 2758173003: Expose GL_VENDOR/GL_RENDERER strings to internal clients of GPU command buffer. (Closed)
Patch Set: Fixing gl_tests Created 3 years, 9 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/gles2_cmd_decoder.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index 90939e70c32fb54088fd0d8800247ee00266b781..daa1f16029887f34e8d9f6fbb6da5d5769dbbcc4 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -12371,13 +12371,6 @@ error::Error GLES2DecoderImpl::HandleGetString(uint32_t immediate_data_size,
case GL_SHADING_LANGUAGE_VERSION:
str = GetServiceShadingLanguageVersionString(feature_info_.get());
break;
- case GL_RENDERER:
- str = GetServiceRendererString(feature_info_.get());
- break;
- case GL_VENDOR:
- str = GetServiceVendorString(feature_info_.get());
- break;
- break;
case GL_EXTENSIONS:
{
// For WebGL contexts, strip out shader extensions if they have not
« no previous file with comments | « gpu/command_buffer/service/gl_utils.cc ('k') | gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698