mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Cleanup.
This commit is contained in:
parent
45365db46a
commit
d1c55b1d09
1 changed files with 7 additions and 6 deletions
13
src/bgfx_p.h
13
src/bgfx_p.h
|
@ -253,11 +253,12 @@ namespace bgfx
|
|||
|
||||
inline uint32_t strideAlign(uint32_t _offset, uint32_t _stride)
|
||||
{
|
||||
const uint32_t mod = bx::uint32_mod(_offset, _stride);
|
||||
const uint32_t add = bx::uint32_sub(_stride, mod);
|
||||
const uint32_t mask = bx::uint32_cmpeq(mod, 0);
|
||||
const uint32_t tmp = bx::uint32_selb(mask, 0, add);
|
||||
const uint32_t result = bx::uint32_add(_offset, tmp);
|
||||
using namespace bx;
|
||||
const uint32_t mod = uint32_mod(_offset, _stride);
|
||||
const uint32_t add = uint32_sub(_stride, mod);
|
||||
const uint32_t mask = uint32_cmpeq(mod, 0);
|
||||
const uint32_t tmp = uint32_selb(mask, 0, add);
|
||||
const uint32_t result = uint32_add(_offset, tmp);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
@ -306,7 +307,7 @@ namespace bgfx
|
|||
clear();
|
||||
}
|
||||
|
||||
BX_NO_INLINE ~TextVideoMem()
|
||||
~TextVideoMem()
|
||||
{
|
||||
BX_FREE(g_allocator, m_mem);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue