Fixed build.

This commit is contained in:
Branimir Karadžić
2017-06-12 23:51:07 -07:00
parent 30b6d07e29
commit 10d78210f7
4 changed files with 4 additions and 4 deletions

View File

@@ -1335,7 +1335,7 @@ namespace bgfx { namespace d3d9
DX_CHECK(device->SetIndices(ib.m_ptr) );
float proj[16];
bx::mtxOrtho(proj, 0.0f, (float)width, (float)height, 0.0f, 0.0f, 1000.0f);
bx::mtxOrtho(proj, 0.0f, (float)width, (float)height, 0.0f, 0.0f, 1000.0f, 0.0f, false);
PredefinedUniform& predefined = program.m_predefined[0];
uint8_t flags = predefined.m_type;