diff options
author | Laszlo Agocs <laszlo.agocs@digia.com> | 2014-02-19 16:38:00 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-02-21 15:52:59 +0100 |
commit | ba77406c4db35f092591fe09fde9a6574ab3a493 (patch) | |
tree | 82d99c8f9d0f39931d61af956d5046b1a1b23d95 /examples/gui | |
parent | 4d08d80be60af14c5daed7c6f8d37538aea6c429 (diff) | |
download | qtbase-ba77406c4db35f092591fe09fde9a6574ab3a493.tar.gz |
Avoid truncation warning in openglwindow example
msvc shows a warning about double -> float truncation. Avoid this.
Change-Id: I1b74cf407c81c881df5e95cc7d64a210888595e3
Reviewed-by: Jørgen Lind <jorgen.lind@digia.com>
Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com>
Diffstat (limited to 'examples/gui')
-rw-r--r-- | examples/gui/openglwindow/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gui/openglwindow/main.cpp b/examples/gui/openglwindow/main.cpp index 237680a889..aa1c6d7fa1 100644 --- a/examples/gui/openglwindow/main.cpp +++ b/examples/gui/openglwindow/main.cpp @@ -144,7 +144,7 @@ void TriangleWindow::render() m_program->bind(); QMatrix4x4 matrix; - matrix.perspective(60, 4.0/3.0, 0.1, 100.0); + matrix.perspective(60.0f, 4.0f/3.0f, 0.1f, 100.0f); matrix.translate(0, 0, -2); matrix.rotate(100.0f * m_frame / screen()->refreshRate(), 0, 1, 0); |