mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Merge pull request #341 from mmicko/master
Fixed initialization order warning
This commit is contained in:
commit
66017329cc
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