You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Le Hoang Quyen, thank you so much for developing MetalANGLE.
I recently used MetalANGLE in my project, found that multiple egl contexts of the same group don't share FBOs, this is inconsistent with standard OpenGLES.
If you execute this code with MetalANGLE, you'll see that fbo1 and fbo2 are both 1, which is not in line with expectations.
If you execute same code with standard OpenGLES, you'll see that fbo1 is 1 and fbo2 are 2.
I read the source code and found some clues here. the 'mFramebufferManager' isn't shared(not using AllocateOrGetSharedResourceManager).
Is this a bug or a feature? If it's a bug, I'd be happy to submit a PR to fix it. If it is a feature, could you please explain the reason.
Thank you again!!
The text was updated successfully, but these errors were encountered:
Hi, Le Hoang Quyen, thank you so much for developing MetalANGLE.
I recently used MetalANGLE in my project, found that multiple egl contexts of the same group don't share FBOs, this is inconsistent with standard OpenGLES.
look at this snippet please:
If you execute this code with MetalANGLE, you'll see that fbo1 and fbo2 are both 1, which is not in line with expectations.
If you execute same code with standard OpenGLES, you'll see that fbo1 is 1 and fbo2 are 2.
I read the source code and found some clues here. the 'mFramebufferManager' isn't shared(not using AllocateOrGetSharedResourceManager).
Is this a bug or a feature? If it's a bug, I'd be happy to submit a PR to fix it. If it is a feature, could you please explain the reason.
Thank you again!!
The text was updated successfully, but these errors were encountered: