当前位置: 首页>>代码示例>>Java>>正文


Java SurfaceManager.getPrimarySurfaceData方法代码示例

本文整理汇总了Java中sun.awt.image.SurfaceManager.getPrimarySurfaceData方法的典型用法代码示例。如果您正苦于以下问题:Java SurfaceManager.getPrimarySurfaceData方法的具体用法?Java SurfaceManager.getPrimarySurfaceData怎么用?Java SurfaceManager.getPrimarySurfaceData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sun.awt.image.SurfaceManager的用法示例。


在下文中一共展示了SurfaceManager.getPrimarySurfaceData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSourceSurfaceData

import sun.awt.image.SurfaceManager; //导入方法依赖的package包/类
/**
 * This method is called on a destination SurfaceData to choose
 * the best SurfaceData from a source Image for an imaging
 * operation, with help from its SurfaceManager.
 * The method may determine that the default SurfaceData was
 * really the best choice in the first place, or it may decide
 * to use a cached surface.  Some general decisions about whether
 * acceleration is enabled are made by this method, but any
 * decision based on the type of the source image is made in
 * the makeProxyFor method below when it comes up with the
 * appropriate SurfaceDataProxy instance.
 * The parameters describe the type of imaging operation being performed.
 * <p>
 * If a blitProxyKey was supplied by the subclass then it is
 * used to potentially override the choice of source SurfaceData.
 * The outline of this process is:
 * <ol>
 * <li> Image pipeline asks destSD to find an appropriate
 *      srcSD for a given source Image object.
 * <li> destSD gets the SurfaceManager of the source Image
 *      and first retrieves the default SD from it using
 *      getPrimarySurfaceData()
 * <li> destSD uses its "blit proxy key" (if set) to look for
 *      some cached data stored in the source SurfaceManager
 * <li> If the cached data is null then makeProxyFor() is used
 *      to create some cached data which is stored back in the
 *      source SurfaceManager under the same key for future uses.
 * <li> The cached data will be a SurfaceDataProxy object.
 * <li> The SurfaceDataProxy object is then consulted to
 *      return a replacement SurfaceData object (typically
 *      a cached copy if appropriate, or the original if not).
 * </ol>
 */
public SurfaceData getSourceSurfaceData(Image img,
                                        int txtype,
                                        CompositeType comp,
                                        Color bgColor)
{
    SurfaceManager srcMgr = SurfaceManager.getManager(img);
    SurfaceData srcData = srcMgr.getPrimarySurfaceData();
    if (img.getAccelerationPriority() > 0.0f &&
        blitProxyKey != null)
    {
        SurfaceDataProxy sdp =
            (SurfaceDataProxy) srcMgr.getCacheData(blitProxyKey);
        if (sdp == null || !sdp.isValid()) {
            if (srcData.getState() == State.UNTRACKABLE) {
                sdp = SurfaceDataProxy.UNCACHED;
            } else {
                sdp = makeProxyFor(srcData);
            }
            srcMgr.setCacheData(blitProxyKey, sdp);
        }
        srcData = sdp.replaceData(srcData, txtype, comp, bgColor);
    }
    return srcData;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:58,代码来源:SurfaceData.java

示例2: flip

import sun.awt.image.SurfaceManager; //导入方法依赖的package包/类
/**
 * Performs the native OGL flip operation for the given target Component.
 */
@Override
public void flip(CPlatformView pView,
                 Component target, VolatileImage xBackBuffer,
                 int x1, int y1, int x2, int y2,
                 BufferCapabilities.FlipContents flipAction)
{
    if (flipAction == BufferCapabilities.FlipContents.COPIED) {
        SurfaceManager vsm = SurfaceManager.getManager(xBackBuffer);
        SurfaceData sd = vsm.getPrimarySurfaceData();

        if (sd instanceof CGLVSyncOffScreenSurfaceData) {
            CGLVSyncOffScreenSurfaceData vsd =
                (CGLVSyncOffScreenSurfaceData)sd;
            SurfaceData bbsd = vsd.getFlipSurface();
            Graphics2D bbg =
                new SunGraphics2D(bbsd, Color.black, Color.white, null);
            try {
                bbg.drawImage(xBackBuffer, 0, 0, null);
            } finally {
                bbg.dispose();
            }
        } else {
            pView.drawImageOnPeer(xBackBuffer, x1, y1, x2, y2);
            return;
        }
    } else if (flipAction == BufferCapabilities.FlipContents.PRIOR) {
        // not supported by CGL...
        return;
    }

    OGLSurfaceData.swapBuffers(pView.getAWTView());

    if (flipAction == BufferCapabilities.FlipContents.BACKGROUND) {
        Graphics g = xBackBuffer.getGraphics();
        try {
            g.setColor(target.getBackground());
            g.fillRect(0, 0,
                       xBackBuffer.getWidth(),
                       xBackBuffer.getHeight());
        } finally {
            g.dispose();
        }
    }
}
 
开发者ID:greghaskins,项目名称:openjdk-jdk7u-jdk,代码行数:48,代码来源:CGLGraphicsConfig.java

示例3: getPrimarySurfaceData

import sun.awt.image.SurfaceManager; //导入方法依赖的package包/类
/**
 * Extracts the SurfaceManager from the given Image, and then
 * returns the SurfaceData object that would best be suited as the
 * destination surface in some rendering operation.
 */
public static SurfaceData getPrimarySurfaceData(Image img) {
    SurfaceManager sMgr = SurfaceManager.getManager(img);
    return sMgr.getPrimarySurfaceData();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:SurfaceData.java


注:本文中的sun.awt.image.SurfaceManager.getPrimarySurfaceData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。