本文介绍了eglCodecCommon: setVertexArrayObject: 设置 vao 调试信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的 Android Emulator (API 28) logcat 被这样的消息淹没了.

I have Android Emulator (API 28) logcat fludded by messages like this.

D/eglCodecCommon: setVertexArrayObject: set vao to 1 (1) 0 0
D/eglCodecCommon: setVertexArrayObject: set vao to 0 (0) 29 30

那是什么,我应该担心吗?

What is that and should I worry about it?

推荐答案

我刚刚在 MainActivity 中注释掉了 mAdView.loadAd(adRequest),但我不再看到此消息.

I just commented out mAdView.loadAd(adRequest) in my MainActivity and I stopped seeing this message.

您可以通过执行以下操作仅在调试模式下关闭此功能:

You can turn this off just in debug mode by doing something like this:

if(bannerAd != null && !kDebugMode) bannerAd!.load()

这篇关于eglCodecCommon: setVertexArrayObject: 设置 vao 调试信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 20:03