Bubble-Picker icon indicating copy to clipboard operation
Bubble-Picker copied to clipboard

Getting OpenGL error, while running the sample app in GitHub

Open navidre opened this issue 8 years ago • 2 comments

Thanks for developing the package. I get the following error: screen shot 2017-09-08 at 4 53 53 pm

device/generic/goldfish-opengl/system/GLESv2_enc/GL2Encoder.cpp:s_glActiveTexture:1717 GL error 0x500

Tested on Android emulator with API levels in range of 21 to 26.

navidre avatar Sep 08 '17 22:09 navidre

GL error 0x500 means GL_INVALID_ENUM. It's thrown when an enumeration parameter is not a legal enumeration for that function. This is thrown only for local problems; if the spec allows the enumeration in certain circumstances, where other parameters or state dictate those circumstances, then GL_INVALID_OPERATION is the result instead.

In other words: This means that your device is the culprit for the issue, it probably has a customized gl.h header file or maybe an outdated shader script (but it's more common to find custom gl.h header file than outdated shaders). The link you left for the other project is an issue regarding a GL error 0x501, totally different error and totally different context.

In the future whenever you open an issue on a library It would be useful if you provide more information than a screenshot, such as device manufacturer, Android version, and everything you might think useful to help the owner of the repo solve the issue.

mradzinski avatar Dec 05 '17 05:12 mradzinski

Hey, what's up. I got this issue today, with this library using this emulator:

Screenshot 2020-03-29 at 20 47 48

It's a stock pixel 2 emulator with 0 customisation. The bubble picker shows nothing on my screen

jesster2k10 avatar Mar 29 '20 19:03 jesster2k10