1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
| auto start = std::chrono::steady_clock::now();
auto stepStart = std::chrono::steady_clock::now();
Sprite* normalRenderer = static_cast<Sprite*>(_buttonNormalRenderer); auto normalTexture = normalRenderer->getTexture(); const Size& s = normalTexture->getContentSizeInPixels();
auto stepEnd = std::chrono::steady_clock::now(); auto stepTime = std::chrono::duration_cast<std::chrono::milliseconds>(stepEnd - stepStart); CCLOG("Sprite::getTexture: %lld ms\n", stepTime.count());
int savedBufferWidth = (int)s.width; int savedBufferHeight = (int)s.height;
CCLOG("image: %s, savedBuffWidth: %d, savedBuffHeight: %d\n", _normalFileName.c_str(), savedBufferWidth, savedBufferHeight);
GLubyte *buffer = nullptr;
// the FBO which cocos2dx used is not window-system-provided (non-zero id) GLint oldFBO; glGetIntegerv(GL_FRAMEBUFFER_BINDING, &oldFBO);
CCLOG("oldFBO: %d\n", oldFBO);
GLuint framebuffer; glGenFramebuffers(1, &framebuffer); glBindFramebuffer(GL_FRAMEBUFFER, framebuffer);
stepStart = std::chrono::steady_clock::now();
glBindTexture(GL_TEXTURE_2D, normalTexture->getName()); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA4, savedBufferWidth, savedBufferHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, normalTexture->getName(), 0);
stepEnd = std::chrono::steady_clock::now(); stepTime = std::chrono::duration_cast<std::chrono::milliseconds>(stepEnd - stepStart); CCLOG("bind texture: %lld ms\n", stepTime.count());
CCASSERT(glCheckFramebufferStatus(GL_FRAMEBUFFER) == GL_FRAMEBUFFER_COMPLETE, "Could not attach texture to framebuffer");
buffer = new (std::nothrow) GLubyte[savedBufferWidth * savedBufferHeight * 4];
stepStart = std::chrono::steady_clock::now();
glPixelStorei(GL_PACK_ALIGNMENT, 1); glReadPixels(0, 0, savedBufferWidth, savedBufferHeight, GL_RGBA, GL_UNSIGNED_BYTE, buffer); glBindFramebuffer(GL_FRAMEBUFFER, oldFBO);
stepEnd = std::chrono::steady_clock::now(); stepTime = std::chrono::duration_cast<std::chrono::milliseconds>(stepEnd - stepStart); CCLOG("glReadPixels: %lld ms\n", stepTime.count());
stepStart = std::chrono::steady_clock::now();
auto dataLen = savedBufferWidth * savedBufferHeight * 4; if (normalTransparent_ != nullptr) { delete[] normalTransparent_; } normalImageWidth_ = savedBufferWidth; normalImageHeight_ = savedBufferHeight; normalTransparent_ = new bool[dataLen / (sizeof(unsigned char) * 4)]; for (auto i = 0; i < normalImageHeight_; i++) { for (auto j = 0; j < normalImageWidth_; j++) { normalTransparent_[i * normalImageWidth_ + j] = (buffer[(i * normalImageWidth_ + j) * 4] == 0); } }
stepEnd = std::chrono::steady_clock::now(); stepTime = std::chrono::duration_cast<std::chrono::milliseconds>(stepEnd - stepStart); CCLOG("init normalTransparent_: %lld ms\n", stepTime.count());
CC_SAFE_DELETE_ARRAY(buffer);
auto end = std::chrono::steady_clock::now(); auto totalTime = std::chrono::duration_cast<std::chrono::milliseconds>(end - start); CCLOG("load from memory: %lld ms\n", totalTime.count());
|