CCRenderTexture 从后台进入前台变黑的处理(android)
在android 中使用CCRenderTexture发现一个bug,
#define CC_ENABLE_CACHE_TEXTURE_DATA 1
将1改成0即可解决
帮助信息:
"Certain Qualcomm Andreno gpu's will retain data in memory after a frame buffer switch which corrupts the render to the texture. The solution is to clear the frame buffer before rendering to the texture. However, calling glClear has the unintended result of clearing the current texture. Create a temporary texture to overcome this. At the end of CCRenderTexture::begin(), switch the attached texture to the second one, call glClear, and then switch back to the original texture. This solution is unnecessary for other devices as they don't have the same issue with switching frame buffers."