class J2DResourceFactory extends BaseResourceFactory
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<Image,Texture> |
clampTexCache |
private static java.util.Map<Image,Texture> |
mipmapTexCache |
private static java.util.Map<Image,Texture> |
repeatTexCache |
private Screen |
screen |
private static ShapeRep |
theRep |
Constructor and Description |
---|
J2DResourceFactory(Screen screen) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
canClampToZero() |
ShapeRep |
createArcRep() |
ShapeRep |
createEllipseRep() |
(package private) J2DPrismGraphics |
createJ2DPrismGraphics(J2DPresentable target,
java.awt.Graphics2D g2d) |
Mesh |
createMesh() |
MeshView |
createMeshView(Mesh mesh) |
ShapeRep |
createPathRep() |
PhongMaterial |
createPhongMaterial() |
Presentable |
createPresentable(PresentableState pState) |
ShapeRep |
createRoundRectRep() |
RTTexture |
createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
Texture |
createTexture(MediaFrame vdb)
Returns a new
Texture that can contain the video image as specified
in the provided MediaFrame . |
Texture |
createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h)
Returns a new
Texture with the given format and edge wrapping
support. |
Texture |
createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap)
Returns a new
Texture with the given format and edge wrapping
support. |
void |
dispose() |
int |
getMaximumTextureSize()
Returns the maximum supported texture dimension for this device.
|
int |
getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
getRTTWidth(int w,
Texture.WrapMode wrapMode) |
(package private) Screen |
getScreen() |
TextureResourcePool |
getTextureResourcePool() |
boolean |
isCompatibleTexture(Texture tex)
A Texture may have been obtained from a different resource factory.
|
boolean |
isFormatSupported(PixelFormat format)
Returns true if the given
PixelFormat is supported; otherwise
returns false. |
addFactoryListener, canClampToEdge, canRepeat, clearTextureCache, clearTextureCache, createFloatTexture, createMaskTexture, createTexture, createTexture, getCachedTexture, getCachedTexture, getFactoryListeners, getGlyphTexture, getRegionTexture, isDeviceReady, isSuperShaderAllowed, isWrapModeSupported, notifyReleased, notifyReset, removeFactoryListener, setGlyphTexture, setRegionTexture
J2DResourceFactory(Screen screen)
J2DPrismGraphics createJ2DPrismGraphics(J2DPresentable target, java.awt.Graphics2D g2d)
public TextureResourcePool getTextureResourcePool()
Screen getScreen()
public ShapeRep createArcRep()
public ShapeRep createEllipseRep()
public ShapeRep createRoundRectRep()
public ShapeRep createPathRep()
public Presentable createPresentable(PresentableState pState)
public int getRTTWidth(int w, Texture.WrapMode wrapMode)
public int getRTTHeight(int h, Texture.WrapMode wrapMode)
public RTTexture createRTTexture(int width, int height, Texture.WrapMode wrapMode, boolean msaa)
public RTTexture createRTTexture(int width, int height, Texture.WrapMode wrapMode)
public Texture createTexture(PixelFormat formatHint, Texture.Usage usageHint, Texture.WrapMode wrapMode, int w, int h)
ResourceFactory
Texture
with the given format and edge wrapping
support. Note that the dimensions of the returned texture may be larger
than those requested and the wrap mode may be a simulated version of
the type requested.formatHint
- intended pixel format of the data to be stored
in this textureusageHint
- the Dynamic vs. Static nature of the texture datawrapMode
- intended wrap mode to be used for the texturew
- width of the content in the textureh
- height of the content in the texturepublic Texture createTexture(PixelFormat formatHint, Texture.Usage usageHint, Texture.WrapMode wrapMode, int w, int h, boolean useMipmap)
ResourceFactory
Texture
with the given format and edge wrapping
support. Note that the dimensions of the returned texture may be larger
than those requested and the wrap mode may be a simulated version of
the type requested.formatHint
- intended pixel format of the data to be stored
in this textureusageHint
- the Dynamic vs. Static nature of the texture datawrapMode
- intended wrap mode to be used for the texturew
- width of the content in the textureh
- height of the content in the textureuseMipmap
- the flag indicates should texture be created with mipmappublic Texture createTexture(MediaFrame vdb)
ResourceFactory
Texture
that can contain the video image as specified
in the provided MediaFrame
. Note that padding is almost implicit
since this method has to accommodate the line strides of each plane. Also
due to renderer limitations, some format conversion may be necessary so
the texture format may end up being different from the video image format.vdb
- the video image that we need to create a new texture forpublic boolean isCompatibleTexture(Texture tex)
ResourceFactory
tex
- the texture to check.protected boolean canClampToZero()
canClampToZero
in class BaseResourceFactory
public int getMaximumTextureSize()
ResourceFactory
public boolean isFormatSupported(PixelFormat format)
ResourceFactory
PixelFormat
is supported; otherwise
returns false.
Note that the following formats are guaranteed to be supported across all devices:
BYTE_RGB
BYTE_RGBA_PRE
BYTE_GRAY
BYTE_ALPHA
Support for the other formats depends on the capabilities of the
device. Be sure to call this method before attempting to create
a Texture
with a non-standard format and plan to have an
alternate codepath if the given format is not supported.
format
- the PixelFormat
to testpublic void dispose()
public PhongMaterial createPhongMaterial()
public Mesh createMesh()