Branimir Karadžić пре 11 година
родитељ
комит
76b317256e
1 измењених фајлова са 4 додато и 4 уклоњено
  1. 4 4
      examples/common/imgui/ocornut_imgui.cpp

+ 4 - 4
examples/common/imgui/ocornut_imgui.cpp

@@ -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
-						, pcmd->clip_rect.y
-						, pcmd->clip_rect.z-pcmd->clip_rect.x
-						, pcmd->clip_rect.w-pcmd->clip_rect.y
+				bgfx::setScissor(uint16_t(pcmd->clip_rect.x)
+						, uint16_t(pcmd->clip_rect.y)
+						, uint16_t(pcmd->clip_rect.z-pcmd->clip_rect.x)
+						, 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);