mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed refcount expected value.
This commit is contained in:
parent
523572d400
commit
e85afa6891
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ namespace bgfx
|
|||
void destroy()
|
||||
{
|
||||
DX_RELEASE(m_srv, 0);
|
||||
DX_RELEASE(m_ptr, 1);
|
||||
DX_RELEASE(m_ptr, 0);
|
||||
}
|
||||
|
||||
void update(uint8_t _side, uint8_t _mip, const Rect& _rect, uint16_t _z, uint16_t _depth, const Memory* _mem);
|
||||
|
|
Loading…
Reference in a new issue