mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Removed check when RenderDoc is present.
This commit is contained in:
parent
0ee31a98c1
commit
cbb3f6d495
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ namespace bgfx
|
|||
{
|
||||
invalidate(_key);
|
||||
m_hashMap.insert(stl::make_pair(_key, _value) );
|
||||
BX_CHECK(1 == getRefCount(_value), "Interface ref count %d, hash %" PRIx64 "."
|
||||
BX_CHECK(isGraphicsDebuggerPresent()
|
||||
|| 1 == getRefCount(_value), "Interface ref count %d, hash %" PRIx64 "."
|
||||
, getRefCount(_value)
|
||||
, _key
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue