QtGui/QtOpenGL: Fix compiler warnings by MSVC2015 (64bit).
opengl\qtriangulatingstroker.cpp(130): warning C4305: '=': truncation from 'double' to 'float' opengl\qtriangulatingstroker.cpp(546): warning C4305: '=': truncation from 'double' to 'float' opengl\qopenglshaderprogram.cpp(1779): warning C4312: 'reinterpret_cast': conversion from 'int' to 'const void *' of greater size qglshaderprogram.cpp(1709): warning C4312: 'reinterpret_cast': conversion from 'int' to 'const void *' of greater size Change-Id: If1de629aada308d18c3641b504d74d3294b1e8bf Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
This commit is contained in:
parent
7b77ef6b0a
commit
44520dfff6
@ -1776,7 +1776,7 @@ void QOpenGLShaderProgram::setAttributeBuffer
|
||||
Q_UNUSED(d);
|
||||
if (location != -1) {
|
||||
d->glfuncs->glVertexAttribPointer(location, tupleSize, type, GL_TRUE, stride,
|
||||
reinterpret_cast<const void *>(offset));
|
||||
reinterpret_cast<const void *>(qintptr(offset)));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ void QTriangulatingStroker::process(const QVectorPath &path, const QPen &pen, co
|
||||
m_roundness = 1;
|
||||
} else if (cosmetic) {
|
||||
m_curvyness_add = realWidth / 2;
|
||||
m_curvyness_mul = CURVE_FLATNESS;
|
||||
m_curvyness_mul = float(CURVE_FLATNESS);
|
||||
m_roundness = qMax<int>(4, realWidth * CURVE_FLATNESS);
|
||||
} else {
|
||||
m_curvyness_add = m_width;
|
||||
@ -543,7 +543,7 @@ void QDashedStrokeProcessor::process(const QVectorPath &path, const QPen &pen, c
|
||||
curvynessMul = CURVE_FLATNESS / m_inv_scale;
|
||||
} else if (cosmetic) {
|
||||
curvynessAdd= width / 2;
|
||||
curvynessMul= CURVE_FLATNESS;
|
||||
curvynessMul= float(CURVE_FLATNESS);
|
||||
} else {
|
||||
curvynessAdd = width * m_inv_scale;
|
||||
curvynessMul = CURVE_FLATNESS / m_inv_scale;
|
||||
|
@ -1706,7 +1706,7 @@ void QGLShaderProgram::setAttributeBuffer
|
||||
Q_UNUSED(d);
|
||||
if (location != -1) {
|
||||
d->glfuncs->glVertexAttribPointer(location, tupleSize, type, GL_TRUE, stride,
|
||||
reinterpret_cast<const void *>(offset));
|
||||
reinterpret_cast<const void *>(qintptr(offset)));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user