update Xcode project

This commit is contained in:
2019-10-19 23:44:55 +02:00
parent 27576443ca
commit e30ac277c1
4 changed files with 17 additions and 5 deletions

View File

@@ -366,12 +366,16 @@ LayerFrame& LayerFrame::operator=(LayerFrame&& other)
bool LayerFrame::create(int width, int height, int duration /*= 1*/)
{
bool success = true;
App::I->render_task([&]
{
for (int i = 0; i < 6; i++)
{
if (!m_rtt[i].create(width, height))
return false;
{
success = false;
return;
}
m_rtt[i].bindFramebuffer();
m_rtt[i].clear();
m_rtt[i].unbindFramebuffer();
@@ -382,7 +386,7 @@ bool LayerFrame::create(int width, int height, int duration /*= 1*/)
m_duration = duration;
w = width;
h = height;
return true;
return success;
}
bool LayerFrame::resize(int width, int height)