From 199f187bad7cd599a9742438d8f14cfa1d37d7d9 Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Fri, 10 Mar 2017 15:40:54 +0300 Subject: [PATCH] Review fixes. --- qt/qt_common/qtoglcontext.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/qt_common/qtoglcontext.cpp b/qt/qt_common/qtoglcontext.cpp index b1daaac0bf..cfc57799e1 100644 --- a/qt/qt_common/qtoglcontext.cpp +++ b/qt/qt_common/qtoglcontext.cpp @@ -59,7 +59,8 @@ void QtRenderOGLContext::resize(int w, int h) m_resizeLock = true; QSize size(my::NextPowOf2(w), my::NextPowOf2(h)); - m_texRect = QRectF(0.0, 0.0, w / (float)size.width(), h / (float)size.height()); + m_texRect = + QRectF(0.0, 0.0, w / static_cast(size.width()), h / static_cast(size.height())); m_frontFrame = my::make_unique(size, QOpenGLFramebufferObject::Depth); m_backFrame = my::make_unique(size, QOpenGLFramebufferObject::Depth);