Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

eglCodecCommon: setVertexArrayObject: set vao debug message

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?

like image 814
yaugenka Avatar asked Feb 19 '20 11:02

yaugenka


2 Answers

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()
like image 160
Joe Muller Avatar answered Nov 16 '22 00:11

Joe Muller


It finally stopped using the Android 11 emulator.

like image 2
gorkem Avatar answered Nov 16 '22 00:11

gorkem