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


Java CPlatformView类代码示例

本文整理汇总了Java中sun.lwawt.macosx.CPlatformView的典型用法代码示例。如果您正苦于以下问题:Java CPlatformView类的具体用法?Java CPlatformView怎么用?Java CPlatformView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: CGLSurfaceData

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
protected CGLSurfaceData(CPlatformView pView, CGLGraphicsConfig gc,
                         ColorModel cm, int type,int width, int height)
{
    this(gc, cm, type, width, height);
    this.pView = pView;
    this.graphicsConfig = gc;

    long pConfigInfo = gc.getNativeConfigInfo();
    long pPeerData = 0L;
    boolean isOpaque = true;
    if (pView != null) {
        pPeerData = pView.getAWTView();
        isOpaque = pView.isOpaque();
    }
    initOps(pConfigInfo, pPeerData, 0, 0, 0, isOpaque);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:CGLSurfaceData.java

示例2: CGLSurfaceData

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
protected CGLSurfaceData(CPlatformView pView, CGLGraphicsConfig gc,
                         ColorModel cm, int type,int width, int height)
{
    this(gc, cm, type, width, height);
    this.pView = pView;
    this.graphicsConfig = gc;

    long pConfigInfo = gc.getNativeConfigInfo();
    long pPeerData = 0L;
    boolean isOpaque = true;
    if (pView != null) {
        pPeerData = pView.getAWTView();
        isOpaque = pView.isOpaque();
    }
    CGLGraphicsConfig.refPConfigInfo(pConfigInfo);
    initOps(pConfigInfo, pPeerData, 0, 0, 0, isOpaque);
}
 
开发者ID:JetBrains,项目名称:jdk8u_jdk,代码行数:18,代码来源:CGLSurfaceData.java

示例3: createBackBuffer

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
/**
 * Attempts to create a OGL-based backbuffer for the given peer.  If
 * the requested configuration is not natively supported, an AWTException
 * is thrown.  Otherwise, if the backbuffer creation is successful, a
 * value of 1 is returned.
 */
@Override
public long createBackBuffer(CPlatformView pView,
                             int numBuffers, BufferCapabilities caps)
    throws AWTException
{
    if (numBuffers > 2) {
        throw new AWTException(
            "Only double or single buffering is supported");
    }
    BufferCapabilities configCaps = getBufferCapabilities();
    if (!configCaps.isPageFlipping()) {
        throw new AWTException("Page flipping is not supported");
    }
    if (caps.getFlipContents() == BufferCapabilities.FlipContents.PRIOR) {
        throw new AWTException("FlipContents.PRIOR is not supported");
    }

    // non-zero return value means backbuffer creation was successful
    // (checked in CPlatformWindow.flip(), etc.)
    return 1;
}
 
开发者ID:greghaskins,项目名称:openjdk-jdk7u-jdk,代码行数:28,代码来源:CGLGraphicsConfig.java

示例4: createData

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
/**
 * Creates a SurfaceData object representing the back buffer of a
 * double-buffered on-screen Window.
 */
public static CGLOffScreenSurfaceData createData(CPlatformView pView,
        Image image, int type) {
    CGLGraphicsConfig gc = getGC(pView);
    Rectangle r = pView.getBounds();
    if (type == FLIP_BACKBUFFER) {
        return new CGLOffScreenSurfaceData(pView, gc, r.width, r.height,
                image, gc.getColorModel(), FLIP_BACKBUFFER);
    } else {
        return new CGLVSyncOffScreenSurfaceData(pView, gc, r.width,
                r.height, image, gc.getColorModel(), type);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:CGLSurfaceData.java

示例5: getGC

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
public static CGLGraphicsConfig getGC(CPlatformView pView) {
    if (pView != null) {
        return (CGLGraphicsConfig)pView.getGraphicsConfiguration();
    } else {
        // REMIND: this should rarely (never?) happen, but what if
        // default config is not CGL?
        GraphicsEnvironment env = GraphicsEnvironment
            .getLocalGraphicsEnvironment();
        GraphicsDevice gd = env.getDefaultScreenDevice();
        return (CGLGraphicsConfig) gd.getDefaultConfiguration();
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:CGLSurfaceData.java

示例6: CGLVSyncOffScreenSurfaceData

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
public CGLVSyncOffScreenSurfaceData(CPlatformView pView,
        CGLGraphicsConfig gc, int width, int height, Image image,
        ColorModel cm, int type) {
    super(pView, gc, width, height, image, cm, type);
    flipSurface = CGLSurfaceData.createData(pView, image,
            FLIP_BACKBUFFER);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:CGLSurfaceData.java

示例7: CGLOffScreenSurfaceData

import sun.lwawt.macosx.CPlatformView; //导入依赖的package包/类
public CGLOffScreenSurfaceData(CPlatformView pView,
                               CGLGraphicsConfig gc, int width, int height, Image image,
                               ColorModel cm, int type) {
    super(pView, gc, cm, type, width, height);
    offscreenImage = image;
    initSurface(this.width, this.height);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:CGLSurfaceData.java


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