Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion impeller/renderer/backend/gles/description_gles.cc
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ bool DescriptionGLES::HasExtension(const std::string& ext) const {
}

bool DescriptionGLES::HasDebugExtension() const {
return HasExtension("GL_KHR_debug");
// Angle just logs calls instead of forwarding debug information to the
// backend. This just overwhelms the logs and is of limited use. Disable on
// Angle.
return HasExtension("GL_KHR_debug") && !IsANGLE();
}

} // namespace impeller