mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Fixed static font buffer.
This commit is contained in:
parent
1fa85ccf27
commit
7cfb9db7ef
1 changed files with 1 additions and 1 deletions
|
@ -765,7 +765,7 @@ void TextBufferManager::submitTextBuffer(TextBufferHandle _handle, uint8_t _id,
|
||||||
}
|
}
|
||||||
|
|
||||||
bgfx::setVertexBuffer(vbh, 0, bc.textBuffer->getVertexCount() );
|
bgfx::setVertexBuffer(vbh, 0, bc.textBuffer->getVertexCount() );
|
||||||
bgfx::setIndexBuffer(ibh, bc.textBuffer->getIndexCount() );
|
bgfx::setIndexBuffer(ibh, 0, bc.textBuffer->getIndexCount() );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue