/
githubmirror
/
jdk22
Обзор
Документация
Войти
/
githubmirror
/
jdk22
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.desktop/macosx/classes/sun/java2d/metal/MTLGraphicsConfig.java
384 строки
13 KB
Jayathirth D V
8318100: Remove redundant check for Metal support
25 окт 2023, 07:01
25 окт 2023, 07:01
5ce718e
Код
Авторство
О чём код?
/* * Copyright (c) 2019, 2021, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package sun.java2d.metal; import sun.awt.CGraphicsConfig; import sun.awt.CGraphicsDevice; import sun.awt.image.OffScreenImage; import sun.awt.image.SunVolatileImage; import sun.awt.image.SurfaceManager; import sun.java2d.Disposer; import sun.java2d.DisposerRecord; import sun.java2d.Surface; import sun.java2d.SurfaceData; import sun.java2d.pipe.hw.AccelGraphicsConfig; import sun.java2d.pipe.hw.AccelSurface; import sun.java2d.pipe.hw.AccelTypedVolatileImage; import sun.java2d.pipe.hw.ContextCapabilities; import sun.lwawt.LWComponentPeer; import sun.lwawt.macosx.CFRetainedResource; import java.awt.AWTException; import java.awt.BufferCapabilities; import java.awt.Component; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import java.awt.ImageCapabilities; import java.awt.Rectangle; import java.awt.Transparency; import java.awt.color.ColorSpace; import java.awt.image.BufferedImage; import java.awt.image.ColorModel; import java.awt.image.DataBuffer; import java.awt.image.DirectColorModel; import java.awt.image.VolatileImage; import java.awt.image.WritableRaster; import java.io.File; import java.security.AccessController; import java.security.PrivilegedAction; import static sun.java2d.metal.MTLContext.MTLContextCaps.CAPS_EXT_GRAD_SHADER; import static sun.java2d.pipe.hw.AccelSurface.TEXTURE; import static sun.java2d.pipe.hw.AccelSurface.RT_TEXTURE; import static sun.java2d.pipe.hw.ContextCapabilities.*; import static sun.java2d.metal.MTLContext.MTLContextCaps.CAPS_EXT_BIOP_SHADER; public final class MTLGraphicsConfig extends CGraphicsConfig implements AccelGraphicsConfig, SurfaceManager.ProxiedGraphicsConfig { private static ImageCapabilities imageCaps = new MTLImageCaps(); @SuppressWarnings("removal") private static final String mtlShadersLib = AccessController.doPrivileged( (PrivilegedAction<String>) () -> System.getProperty("java.home", "") + File.separator + "lib" + File.separator + "shaders.metallib"); private BufferCapabilities bufferCaps; private long pConfigInfo; private ContextCapabilities mtlCaps; private final MTLContext context; private final Object disposerReferent = new Object(); private final int maxTextureSize; private static native boolean tryLoadMetalLibrary(int displayID, String shaderLib); private static native long getMTLConfigInfo(int displayID, String mtlShadersLib); /** * Returns maximum texture size supported by Metal. Must be * called under MTLRQ lock. */ private static native int nativeGetMaxTextureSize(); private MTLGraphicsConfig(CGraphicsDevice device, long configInfo, int maxTextureSize, ContextCapabilities mtlCaps) { super(device); this.pConfigInfo = configInfo; this.mtlCaps = mtlCaps; this.maxTextureSize = maxTextureSize; context = new MTLContext(MTLRenderQueue.getInstance()); // add a record to the Disposer so that we destroy the native // MTLGraphicsConfigInfo data when this object goes away Disposer.addRecord(disposerReferent, new MTLGCDisposerRecord(pConfigInfo)); } @Override public Object getProxyKey() { return this; } public SurfaceData createManagedSurface(int w, int h, int transparency) { return MTLSurfaceData.createData(this, w, h, getColorModel(transparency), null, MTLSurfaceData.TEXTURE); } public static MTLGraphicsConfig getConfig(CGraphicsDevice device, int displayID) { if (!tryLoadMetalLibrary(displayID, mtlShadersLib)) { return null; } long cfginfo = 0; int textureSize = 0; MTLRenderQueue rq = MTLRenderQueue.getInstance(); rq.lock(); try { cfginfo = getMTLConfigInfo(displayID, mtlShadersLib); if (cfginfo != 0L) { textureSize = nativeGetMaxTextureSize(); // TODO : This clamping code is same as in OpenGL. // Whether we need such clamping or not in case of Metal // will be pursued under 8260644 textureSize = textureSize <= 16384 ? textureSize / 2 : 8192; MTLContext.setScratchSurface(cfginfo); } } finally { rq.unlock(); } if (cfginfo == 0) { return null; } ContextCapabilities caps = new MTLContext.MTLContextCaps( CAPS_PS30 | CAPS_PS20 | CAPS_RT_TEXTURE_ALPHA | CAPS_RT_TEXTURE_OPAQUE | CAPS_MULTITEXTURE | CAPS_TEXNONPOW2 | CAPS_TEXNONSQUARE | CAPS_EXT_BIOP_SHADER | CAPS_EXT_GRAD_SHADER, null); return new MTLGraphicsConfig(device, cfginfo, textureSize, caps); } /** * Returns true if the provided capability bit is present for this config. * See MTLContext.java for a list of supported capabilities. */ public boolean isCapPresent(int cap) { return ((mtlCaps.getCaps() & cap) != 0); } public long getNativeConfigInfo() { return pConfigInfo; } /** * {@inheritDoc} * * @see sun.java2d.pipe.hw.BufferedContextProvider#getContext */ @Override public MTLContext getContext() { return context; } @Override public BufferedImage createCompatibleImage(int width, int height) { ColorModel model = new DirectColorModel(24, 0xff0000, 0xff00, 0xff); WritableRaster raster = model.createCompatibleWritableRaster(width, height); return new BufferedImage(model, raster, model.isAlphaPremultiplied(), null); } @Override public ColorModel getColorModel(int transparency) { switch (transparency) { case Transparency.OPAQUE: // REMIND: once the ColorModel spec is changed, this should be // an opaque premultiplied DCM... return new DirectColorModel(24, 0xff0000, 0xff00, 0xff); case Transparency.BITMASK: return new DirectColorModel(25, 0xff0000, 0xff00, 0xff, 0x1000000); case Transparency.TRANSLUCENT: ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_sRGB); return new DirectColorModel(cs, 32, 0xff0000, 0xff00, 0xff, 0xff000000, true, DataBuffer.TYPE_INT); default: return null; } } public boolean isDoubleBuffered() { return true; } private static class MTLGCDisposerRecord implements DisposerRecord { private long pCfgInfo; public MTLGCDisposerRecord(long pCfgInfo) { this.pCfgInfo = pCfgInfo; } public void dispose() { if (pCfgInfo != 0) { MTLRenderQueue.disposeGraphicsConfig(pCfgInfo); pCfgInfo = 0; } } } @Override public String toString() { return ("MTLGraphicsConfig[" + getDevice().getIDstring() + "]"); } @Override public SurfaceData createSurfaceData(CFRetainedResource layer) { return MTLSurfaceData.createData((MTLLayer) layer); } @Override public Image createAcceleratedImage(Component target, int width, int height) { ColorModel model = getColorModel(Transparency.OPAQUE); WritableRaster wr = model.createCompatibleWritableRaster(width, height); return new OffScreenImage(target, model, wr, model.isAlphaPremultiplied()); } @Override public void assertOperationSupported(final int numBuffers, final BufferCapabilities caps) throws AWTException { // Assume this method is never called with numBuffers != 2, as 0 is // unsupported, and 1 corresponds to a SingleBufferStrategy which // doesn't depend on the peer. Screen is considered as a separate // "buffer". if (numBuffers != 2) { throw new AWTException("Only double buffering is supported"); } final 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"); } } @Override public Image createBackBuffer(final LWComponentPeer<?, ?> peer) { final Rectangle r = peer.getBounds(); // It is possible for the component to have size 0x0, adjust it to // be at least 1x1 to avoid IAE final int w = Math.max(1, r.width); final int h = Math.max(1, r.height); final int transparency = peer.isTranslucent() ? Transparency.TRANSLUCENT : Transparency.OPAQUE; return new SunVolatileImage(this, w, h, transparency, null); } @Override public void destroyBackBuffer(final Image backBuffer) { if (backBuffer != null) { backBuffer.flush(); } } @Override public void flip(final LWComponentPeer<?, ?> peer, final Image backBuffer, final int x1, final int y1, final int x2, final int y2, final BufferCapabilities.FlipContents flipAction) { final Graphics g = peer.getGraphics(); try { g.drawImage(backBuffer, x1, y1, x2, y2, x1, y1, x2, y2, null); } finally { g.dispose(); } if (flipAction == BufferCapabilities.FlipContents.BACKGROUND) { final Graphics2D bg = (Graphics2D) backBuffer.getGraphics(); try { bg.setBackground(peer.getBackground()); bg.clearRect(0, 0, backBuffer.getWidth(null), backBuffer.getHeight(null)); } finally { bg.dispose(); } } } private static class MTLBufferCaps extends BufferCapabilities { public MTLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); } } @Override public BufferCapabilities getBufferCapabilities() { if (bufferCaps == null) { bufferCaps = new MTLBufferCaps(isDoubleBuffered()); } return bufferCaps; } private static class MTLImageCaps extends ImageCapabilities { private MTLImageCaps() { super(true); } public boolean isTrueVolatile() { return true; } } @Override public ImageCapabilities getImageCapabilities() { return imageCaps; } @Override public VolatileImage createCompatibleVolatileImage(int width, int height, int transparency, int type) { if ((type != RT_TEXTURE && type != TEXTURE) || transparency == Transparency.BITMASK) { return null; } SunVolatileImage vi = new AccelTypedVolatileImage(this, width, height, transparency, type); Surface sd = vi.getDestSurface(); if (!(sd instanceof AccelSurface) || ((AccelSurface)sd).getType() != type) { vi.flush(); vi = null; } return vi; } /** * {@inheritDoc} * * @see sun.java2d.pipe.hw.AccelGraphicsConfig#getContextCapabilities */ @Override public ContextCapabilities getContextCapabilities() { return mtlCaps; } @Override public int getMaxTextureWidth() { return Math.max(maxTextureSize / getDevice().getScaleFactor(), getBounds().width); } @Override public int getMaxTextureHeight() { return Math.max(maxTextureSize / getDevice().getScaleFactor(), getBounds().height); } }