We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c5bf78 commit 1c9aa95Copy full SHA for 1c9aa95
engine/src/flutter/impeller/renderer/backend/gles/description_gles.cc
@@ -178,7 +178,10 @@ bool DescriptionGLES::HasExtension(const std::string& ext) const {
178
}
179
180
bool DescriptionGLES::HasDebugExtension() const {
181
- return HasExtension("GL_KHR_debug");
+ // Angle just logs calls instead of forwarding debug information to the
182
+ // backend. This just overwhelms the logs and is of limited use. Disable on
183
+ // Angle.
184
+ return HasExtension("GL_KHR_debug") && !IsANGLE();
185
186
187
} // namespace impeller
0 commit comments