/* * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.scenario.effect.impl; import com.sun.scenario.effect.Filterable; public interface HeapImage extends Filterable { public int getScanlineStride(); public int[] getPixelArray(); }