mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed initialization order warning
This commit is contained in:
parent
12998fe580
commit
6ca4a77353
1 changed files with 2 additions and 2 deletions
|
@ -285,10 +285,10 @@ namespace bgfx { namespace d3d11
|
|||
struct FrameBufferD3D11
|
||||
{
|
||||
FrameBufferD3D11()
|
||||
: m_denseIdx(UINT16_MAX)
|
||||
: m_dsv(NULL)
|
||||
, m_denseIdx(UINT16_MAX)
|
||||
, m_num(0)
|
||||
, m_numTh(0)
|
||||
, m_dsv(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue