mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
Cleanup.
This commit is contained in:
parent
c15439b7cb
commit
da8a691163
1 changed files with 6 additions and 6 deletions
|
@ -2932,15 +2932,15 @@ BX_PRAGMA_DIAGNOSTIC_POP();
|
||||||
ID3D11DeviceContext* deviceCtx = s_renderD3D11->m_deviceCtx;
|
ID3D11DeviceContext* deviceCtx = s_renderD3D11->m_deviceCtx;
|
||||||
|
|
||||||
D3D11_BOX box;
|
D3D11_BOX box;
|
||||||
box.left = _rect.m_x;
|
box.left = _rect.m_x;
|
||||||
box.top = _rect.m_y;
|
box.top = _rect.m_y;
|
||||||
box.right = box.left + _rect.m_width;
|
box.right = box.left + _rect.m_width;
|
||||||
box.bottom = box.top + _rect.m_height;
|
box.bottom = box.top + _rect.m_height;
|
||||||
box.front = _z;
|
box.front = _z;
|
||||||
box.back = box.front + _depth;
|
box.back = box.front + _depth;
|
||||||
|
|
||||||
const uint32_t subres = _mip + (_side * m_numMips);
|
const uint32_t subres = _mip + (_side * m_numMips);
|
||||||
const uint32_t bpp = getBitsPerPixel(TextureFormat::Enum(m_textureFormat) );
|
const uint32_t bpp = getBitsPerPixel(TextureFormat::Enum(m_textureFormat) );
|
||||||
const uint32_t rectpitch = _rect.m_width*bpp/8;
|
const uint32_t rectpitch = _rect.m_width*bpp/8;
|
||||||
const uint32_t srcpitch = UINT16_MAX == _pitch ? rectpitch : _pitch;
|
const uint32_t srcpitch = UINT16_MAX == _pitch ? rectpitch : _pitch;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue