cats-oss / android-gpuimage

Android filters based on OpenGL (idea from GPUImage for iOS)
8.95k stars 2.26k forks source link

GL error 0x501 messages when using GPUImageLookupFilter #537

Open seriousidea opened 2 years ago

seriousidea commented 2 years ago

When using GPUImageLookupFilter, error messages appear in the log (as you can see in the photo). The first error message looks like this:

E/emuglGLESv2_enc: device/generic/goldfish-opengl/system/GLESv2_enc/GL2Encoder.cpp:s_glEnableVertexAttribArray:872 GL error 0x501 Info: Invalid vertex attribute index. Wanted index: 4294967295. Max index: 16

This error message occurs in the method onInit() of file GPUImageTwoInputFilter.java after calling method GLES20.glEnableVertexAttribArray() with parameter -1. Right after this call the GLES20.glGetError() method will return error 1281 "invalid value".

To reproduce: just launch the project GPUImage Sample on android emulator via Android Studio, select an image and apply GPUImageLookupFilter. Or create and use your own project with this filter.

GLError501

SCaptainCAP commented 2 years ago

I have the same error ++

nmkazantsev commented 2 years ago

Me too