mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -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::setIndexBuffer(ibh, bc.textBuffer->getIndexCount() );
|
||||
bgfx::setIndexBuffer(ibh, 0, bc.textBuffer->getIndexCount() );
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue