Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15.2
-
None
-
Qt5.15.2 + MSVC2019
Description
In QML, texture rendering is blurred when Item non-integer xy coordinates.
Affect QQuickPaintedItem,ShaderEffectSource,QtGraphicalEffects,layer etc.
Qt5 - QtQuick2 all version have this problem.
PaintedItem {
x: 10 //ok
y: 200
width: 100
height: 100
}
PaintedItem {
x: 10.5 //non-integer will blur
y: 200.5
width: 100
height: 100
}