com.sun.prism.d3d.D3DRTTexture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-78-backport Show documentation
Show all versions of openjfx-78-backport Show documentation
This is a backport of OpenJFX 8 to run on Java 7.
The newest version!
/*
* Copyright (c) 2009, 2013, 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 com.sun.prism.d3d;
import com.sun.glass.ui.Screen;
import com.sun.prism.Graphics;
import com.sun.prism.Image;
import com.sun.prism.PixelFormat;
import com.sun.prism.RTTexture;
import com.sun.prism.ReadbackRenderTarget;
import com.sun.prism.Texture;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.nio.IntBuffer;
class D3DRTTexture extends D3DTexture
implements D3DRenderTarget, RTTexture, ReadbackRenderTarget
{
private boolean opaque;
D3DRTTexture(D3DContext context, WrapMode wrapMode, long pResource,
int physicalWidth, int physicalHeight,
int contentWidth, int contentHeight)
{
super(context, PixelFormat.INT_ARGB_PRE, wrapMode, pResource,
physicalWidth, physicalHeight,
contentWidth, contentHeight, true);
this.opaque = false;
}
D3DRTTexture(D3DContext context, WrapMode wrapMode, long pResource,
int physicalWidth, int physicalHeight,
int contentX, int contentY,
int contentWidth, int contentHeight)
{
super(context, PixelFormat.INT_ARGB_PRE, wrapMode, pResource,
physicalWidth, physicalHeight,
contentX, contentY, contentWidth, contentHeight, true);
this.opaque = false;
}
public Texture getBackBuffer() {
return this;
}
public long getResourceHandle() {
return resource.getResource().getResource();
}
public Graphics createGraphics() {
return D3DGraphics.create(this, getContext());
}
public int[] getPixels() {
return null;
}
public boolean readPixels(Buffer pixels, int x, int y, int width, int height) {
if (x != getContentX() || y != getContentY()
|| width != getContentWidth() || height != getContentHeight())
{
throw new IllegalArgumentException("reading subtexture not yet supported!");
}
return readPixels(pixels);
}
public boolean readPixels(Buffer pixels) {
getContext().flushVertexBuffer();
long ctx = getContext().getContextHandle();
int res = D3DContext.D3D_OK;
if (pixels instanceof ByteBuffer) {
ByteBuffer buf = (ByteBuffer) pixels;
byte[] arr = buf.hasArray() ? buf.array() : null;
// because of bug 6446635 we take capacity at the java level
long length = buf.capacity();
res = D3DResourceFactory.nReadPixelsB(ctx, getNativeSourceHandle(),
length, pixels, arr,
getContentWidth(), getContentHeight());
} else if (pixels instanceof IntBuffer) {
IntBuffer buf = (IntBuffer) pixels;
int[] arr = buf.hasArray() ? buf.array() : null;
long length = buf.capacity()*4;
res = D3DResourceFactory.nReadPixelsI(ctx, getNativeSourceHandle(),
length, pixels, arr,
getContentWidth(), getContentHeight());
} else {
throw new IllegalArgumentException("Buffer of this type is " +
"not supported: "+pixels);
}
return getContext().validatePresent(res);
}
public Screen getAssociatedScreen() {
return getContext().getAssociatedScreen();
}
@Override
public void update(Image img) {
throw new UnsupportedOperationException("update() not supported for RTTextures");
}
@Override
public void update(Image img, int dstx, int dsty) {
throw new UnsupportedOperationException("update() not supported for RTTextures");
}
@Override
public void update(Image img, int dstx, int dsty, int w, int h) {
throw new UnsupportedOperationException("update() not supported for RTTextures");
}
@Override
public void update(Image img, int dstx, int dsty, int w, int h, boolean skipFlush) {
throw new UnsupportedOperationException("update() not supported for RTTextures");
}
@Override
public void update(Buffer pixels, PixelFormat format,
int dstx, int dsty,
int srcx, int srcy, int srcw, int srch, int srcscan,
boolean skipFlush)
{
throw new UnsupportedOperationException("update() not supported for RTTextures");
}
public void setOpaque(boolean isOpaque) {
this.opaque = isOpaque;
}
public boolean isOpaque() {
return opaque;
}
public boolean isVolatile() {
return getContext().isRTTVolatile();
}
}