Fixed compile warning.

This commit is contained in:
Branimir Karadžić 2015-01-19 23:35:49 -08:00
parent d5bea0e7fd
commit 76b317256e

View file

@ -64,10 +64,10 @@ struct OcornutImguiContext
| BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_ALPHA, BGFX_STATE_BLEND_INV_SRC_ALPHA) | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_ALPHA, BGFX_STATE_BLEND_INV_SRC_ALPHA)
| BGFX_STATE_MSAA | BGFX_STATE_MSAA
); );
bgfx::setScissor(pcmd->clip_rect.x bgfx::setScissor(uint16_t(pcmd->clip_rect.x)
, pcmd->clip_rect.y , uint16_t(pcmd->clip_rect.y)
, pcmd->clip_rect.z-pcmd->clip_rect.x , uint16_t(pcmd->clip_rect.z-pcmd->clip_rect.x)
, pcmd->clip_rect.w-pcmd->clip_rect.y , uint16_t(pcmd->clip_rect.w-pcmd->clip_rect.y)
); );
bgfx::setTexture(0, s_tex, m_texture); bgfx::setTexture(0, s_tex, m_texture);
bgfx::setVertexBuffer(&tvb, vtx_offset, pcmd->vtx_count); bgfx::setVertexBuffer(&tvb, vtx_offset, pcmd->vtx_count);