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

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

Issue 2472703003: Load the GL_KHR_debug entry points and log messages they produce. (Closed)
Patch Set: Created 4 years, 1 month 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_passthrough.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc
index 17c723f0c7858a7b6d5b0851e617d43c5c22ff6f..6636439457a6512683be6e53f0f6e97d3e926041 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc
@@ -178,6 +178,11 @@ bool GLES2DecoderPassthroughImpl::Initialize(
active_texture_unit_ = 0;
bound_textures_.resize(num_texture_units, 0);
+ if (group_->gpu_preferences().enable_gpu_driver_debug_logging &&
+ feature_info_->feature_flags().khr_debug) {
+ InitializeGLDebugLogging();
+ }
+
set_initialized();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698