class DummyResourceFactory extends BaseShaderFactory
Modifier and Type | Field and Description |
---|---|
private DummyContext |
context |
Constructor and Description |
---|
DummyResourceFactory(Screen screen) |
Modifier and Type | Method and Description |
---|---|
Mesh |
createMesh() |
MeshView |
createMeshView(Mesh mesh) |
PhongMaterial |
createPhongMaterial() |
Presentable |
createPresentable(PresentableState pState) |
RTTexture |
createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
Shader |
createShader(java.io.InputStream pixelShaderCode,
java.util.Map<java.lang.String,java.lang.Integer> samplers,
java.util.Map<java.lang.String,java.lang.Integer> params,
int maxTexCoordIndex,
boolean isPixcoordUsed,
boolean isPerVertexColorUsed) |
Shader |
createStockShader(java.lang.String name) |
Texture |
createTexture(MediaFrame frame)
Returns a new
Texture that can contain the video image as specified
in the provided MediaFrame . |
DummyTexture |
createTexture(PixelFormat format,
Texture.Usage usagehint,
Texture.WrapMode wrapMode,
int w,
int h)
Returns a new
Texture with the given format and edge wrapping
support. |
DummyTexture |
createTexture(PixelFormat format,
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() |
(package private) DummyContext |
getContext() |
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) |
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. |
createArcRep, createEllipseRep, createPathRep, createRoundRectRep
addFactoryListener, canClampToEdge, canClampToZero, canRepeat, clearTextureCache, clearTextureCache, createFloatTexture, createMaskTexture, createTexture, createTexture, getCachedTexture, getCachedTexture, getFactoryListeners, getGlyphTexture, getRegionTexture, isDeviceReady, isSuperShaderAllowed, isWrapModeSupported, notifyReleased, notifyReset, removeFactoryListener, setGlyphTexture, setRegionTexture
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addFactoryListener, createFloatTexture, createMaskTexture, createTexture, createTexture, getCachedTexture, getCachedTexture, getGlyphTexture, getRegionTexture, isDeviceReady, isSuperShaderAllowed, isWrapModeSupported, removeFactoryListener, setGlyphTexture, setRegionTexture
private final DummyContext context
DummyResourceFactory(Screen screen)
DummyContext getContext()
public TextureResourcePool getTextureResourcePool()
public DummyTexture createTexture(PixelFormat format, 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.format
- 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 DummyTexture createTexture(PixelFormat format, 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.format
- 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 int getRTTWidth(int w, Texture.WrapMode wrapMode)
public int getRTTHeight(int h, Texture.WrapMode wrapMode)
public boolean isCompatibleTexture(Texture tex)
ResourceFactory
tex
- the texture to check.public RTTexture createRTTexture(int width, int height, Texture.WrapMode wrapMode)
public RTTexture createRTTexture(int width, int height, Texture.WrapMode wrapMode, boolean msaa)
public Presentable createPresentable(PresentableState pState)
public Shader createShader(java.io.InputStream pixelShaderCode, java.util.Map<java.lang.String,java.lang.Integer> samplers, java.util.Map<java.lang.String,java.lang.Integer> params, int maxTexCoordIndex, boolean isPixcoordUsed, boolean isPerVertexColorUsed)
public Shader createStockShader(java.lang.String name)
public void dispose()
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 int getMaximumTextureSize()
ResourceFactory
public Texture createTexture(MediaFrame frame)
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.frame
- the video image that we need to create a new texture forpublic PhongMaterial createPhongMaterial()
public Mesh createMesh()