--- old/src/java.desktop/unix/classes/sun/java2d/xr/XRBackendNative.java 2018-01-18 11:37:52.803996000 +0530 +++ new/src/java.desktop/unix/classes/sun/java2d/xr/XRBackendNative.java 2018-01-18 11:37:52.383786000 +0530 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -149,7 +149,7 @@ XRColor c = new XRColor(); for (int i = 0; i < pixels.length; i++) { - c.setColorValues(pixels[i], true); + c.setColorValues(pixels[i]); renderColors[i * 4 + 0] = (short) c.alpha; renderColors[i * 4 + 1] = (short) c.red; renderColors[i * 4 + 2] = (short) c.green;