/* * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.image.impl; import com.sun.javafx.image.BytePixelAccessor; import com.sun.javafx.image.BytePixelGetter; import com.sun.javafx.image.BytePixelSetter; import com.sun.javafx.image.ByteToBytePixelConverter; public class ByteGrayAlphaPre { public static final BytePixelGetter getter = ByteGrayAlpha.Accessor.premul; public static final BytePixelSetter setter = ByteGrayAlpha.Accessor.premul; public static final BytePixelAccessor accessor = ByteGrayAlpha.Accessor.premul; public static ByteToBytePixelConverter ToByteBgraPreConverter() { return ByteGrayAlpha.ToByteBgraSameConv.premul; } }