-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.5.0 Alpha
-
None
Given a Text element rendering with a small font size, if we render it thorugh a (much) bigger ShaderEffectSource + a ShaderEffect we'll see smoothed edges instead of crips edges. This happens also if the textureSize is set to the final size of the ShaderEffect.
import QtQuick 2.4 Item { width: 480 height: 640 Rectangle { gradient: Gradient { GradientStop { position: 0; color: "steelblue" } GradientStop { position: 1; color: "black " } } } Text { id: text width: 20 height: 20 text: "Q" layer.enabled: true layer.textureSize: Qt.size(400, 400); } ShaderEffect { width: 400 height: 400 property var source: text; } }
- relates to
-
QTBUG-139997 Curve renderer matrix scale detection fails when layer is enabled
-
- Closed
-