mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed compile error.
This commit is contained in:
parent
e3cb3710f8
commit
7c1c180243
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ ovrError:
|
|||
ovrSizei sizeL = ovrHmd_GetFovTextureSize(m_hmd, ovrEye_Left, m_hmd->DefaultEyeFov[0], 1.0f);
|
||||
ovrSizei sizeR = ovrHmd_GetFovTextureSize(m_hmd, ovrEye_Right, m_hmd->DefaultEyeFov[1], 1.0f);
|
||||
m_rtSize.w = sizeL.w + sizeR.w;
|
||||
m_rtSize.h = max(sizeL.h, sizeR.h);
|
||||
m_rtSize.h = bx::uint32_max(sizeL.h, sizeR.h);
|
||||
|
||||
m_warning = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue