JDK-8115928 : LCD Text distorts underlying image
  • Type: Bug
  • Component: javafx
  • Sub-Component: graphics
  • Affected Version: fx2.1
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2011-10-25
  • Updated: 2015-06-17
  • Resolved: 2011-11-02
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
fx2.1Resolved
Related Reports
Duplicate :  
Description
LCD Text distorts underlying image. As result it looks if with different gamma. 
It is simple to understad while looking into the shader : 

    float3 dstClr = sample(dstColor, texCoord2).rgb;
    float3 dstAdj = pow(dstClr, invGamma);
    float3 result = mix(dstClr, srcClr, glyphClr);

dstAdj is NEVER used, but it must.

Comments
This is one part of the problem in RT-14211
02-11-2011