79838002

Date: 2025-12-04 14:14:39
Score: 0.5
Natty:
Report link

I meet GL_INVALID_OPERATION too when glBindImageTexture.

Like CodingLumis said(need to read his answer util the end), solution is : replace glTexImage2D with glTexStorage2D

According https://arm-software.github.io/opengl-es-sdk-for-android/compute_intro.html

A very important restriction for using shader images is that the underlying texture must have been allocated using "immutable" storage, i.e. via glTexStorage*()-like functions, and not glTexImage2D().

---
Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pavilion