mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-03-29 08:19:52 -04: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…
Add table
Reference in a new issue