Modifier and Type | Field and Description |
---|---|
Texture |
PrismMediaFrameHandler.TextureMapEntry.texture |
Modifier and Type | Method and Description |
---|---|
Texture |
PrismMediaFrameHandler.getTexture(Graphics g,
VideoDataBuffer currentFrame)
This should only ever be called during a render cycle.
|
Modifier and Type | Field and Description |
---|---|
private Texture |
NGExternalNode.dsttexture |
private static Texture |
EffectUtil.dtex |
private static Texture |
EffectUtil.itex |
Modifier and Type | Method and Description |
---|---|
private Texture |
NGExternalNode.createTexture(Graphics g,
NGExternalNode.RenderData rd) |
Modifier and Type | Method and Description |
---|---|
(package private) static void |
EffectUtil.drawClippedTexture(Graphics g,
Texture tex,
float cx1,
float cy1,
float cx2,
float cy2,
float ox1,
float oy1,
float ox2,
float oy2,
float tx1,
float ty1,
float tx2,
float ty2) |
Modifier and Type | Field and Description |
---|---|
private Texture |
WCImageImpl.texture |
Modifier and Type | Interface and Description |
---|---|
interface |
RTTexture |
Modifier and Type | Class and Description |
---|---|
class |
MultiTexture
A "texture" that wraps a list of sub-textures and values needed for multitexturing.
|
Modifier and Type | Field and Description |
---|---|
private Texture |
TextureMap.texture |
Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<Texture> |
MultiTexture.textures |
Modifier and Type | Method and Description |
---|---|
Texture |
ResourceFactory.createFloatTexture(int width,
int height) |
Texture |
ResourceFactory.createMaskTexture(int width,
int height,
Texture.WrapMode wrapMode) |
Texture |
ResourceFactory.createTexture(Image image,
Texture.Usage usageHint,
Texture.WrapMode wrapMode)
Returns a new
Texture containing the pixels from the given
image with the indicated texture edge wrap mode. |
Texture |
ResourceFactory.createTexture(Image image,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
boolean useMipmap)
Returns a new
Texture containing the pixels from the given
image with the indicated texture edge wrap mode. |
Texture |
ResourceFactory.createTexture(MediaFrame frame)
Returns a new
Texture that can contain the video image as specified
in the provided MediaFrame . |
Texture |
ResourceFactory.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 |
ResourceFactory.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. |
Texture |
ReadbackRenderTarget.getBackBuffer() |
Texture |
ResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode)
Returns a
Texture for the given image set up to use or
simulate the indicated wrap mode. |
Texture |
ResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode,
boolean useMipmap)
Returns a
Texture for the given image set up to use or
simulate the indicated wrap mode. |
Texture |
ResourceFactory.getGlyphTexture() |
Texture |
ResourceFactory.getRegionTexture() |
Texture |
Texture.getSharedTexture(Texture.WrapMode altMode)
Constructs an alternate version of this
Texture with an
alternate WrapMode if the two modes allow the underlying texture
to be shared, otherwise a null value is returned. |
Texture |
MultiTexture.getSharedTexture(Texture.WrapMode altMode) |
Texture |
TextureMap.getTexture() |
Texture |
MultiTexture.getTexture(int index) |
Texture[] |
MultiTexture.getTextures() |
Modifier and Type | Method and Description |
---|---|
void |
Graphics.drawMappedTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx11,
float ty11,
float tx21,
float ty21,
float tx12,
float ty12,
float tx22,
float ty22) |
void |
Graphics.drawTexture(Texture tex,
float x,
float y,
float w,
float h) |
void |
Graphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
void |
Graphics.drawTexture3SliceH(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dh2,
float sh1,
float sh2) |
void |
Graphics.drawTexture3SliceV(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dv1,
float dv2,
float sv1,
float sv2) |
void |
Graphics.drawTexture9Slice(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dv1,
float dh2,
float dv2,
float sh1,
float sv1,
float sh2,
float sv2) |
void |
Graphics.drawTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx1,
float ty1,
float tx2,
float ty2) |
void |
Graphics.drawTextureVO(Texture tex,
float topopacity,
float botopacity,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
boolean |
ResourceFactory.isCompatibleTexture(Texture tex)
A Texture may have been obtained from a different resource factory.
|
void |
MultiTexture.removeTexture(Texture tex) |
void |
ResourceFactory.setGlyphTexture(Texture texture) |
void |
ResourceFactory.setRegionTexture(Texture texture) |
void |
TextureMap.setTexture(Texture texture) |
void |
MultiTexture.setTexture(Texture tex,
int index) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
D3DRTTexture |
(package private) class |
D3DTexture |
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<Image,Texture> |
D3DResourceFactory.clampTexCache |
private static java.util.Map<Image,Texture> |
D3DResourceFactory.mipmapTexCache |
private static java.util.Map<Image,Texture> |
D3DResourceFactory.repeatTexCache |
Modifier and Type | Method and Description |
---|---|
protected Texture |
D3DTexture.createSharedTexture(Texture.WrapMode newMode) |
Texture |
D3DResourceFactory.createTexture(MediaFrame frame) |
Texture |
D3DRTTexture.getBackBuffer() |
private Texture |
D3DPhongMaterial.setupTexture(TextureMap map,
boolean useMipmap) |
Modifier and Type | Method and Description |
---|---|
boolean |
D3DResourceFactory.isCompatibleTexture(Texture tex) |
protected void |
D3DContext.updateTexture(int texUnit,
Texture tex) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
ES2RTTexture |
(package private) class |
ES2Texture<T extends ES2TextureData> |
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<Image,Texture> |
ES2ResourceFactory.clampTexCache |
private static java.util.Map<Image,Texture> |
ES2ResourceFactory.mipmapTexCache |
private static java.util.Map<Image,Texture> |
ES2ResourceFactory.repeatTexCache |
Modifier and Type | Method and Description |
---|---|
static Texture |
ES2Texture.create(ES2Context context,
MediaFrame frame) |
protected Texture |
ES2Texture.createSharedTexture(Texture.WrapMode newMode) |
Texture |
ES2ResourceFactory.createTexture(MediaFrame frame) |
Texture |
ES2ResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h) |
Texture |
ES2ResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
Texture |
ES2RTTexture.getBackBuffer() |
private Texture |
ES2PhongMaterial.setupTexture(TextureMap map,
boolean useMipmap) |
Modifier and Type | Method and Description |
---|---|
boolean |
ES2ResourceFactory.isCompatibleTexture(Texture tex) |
protected void |
ES2Context.updateTexture(int texUnit,
Texture tex) |
Modifier and Type | Field and Description |
---|---|
protected Texture[] |
CompoundTexture.texTiles |
Modifier and Type | Method and Description |
---|---|
Texture |
CompoundTexture.getTile(int x,
int y,
ResourceFactory factory) |
Texture |
CachingCompoundImage.getTile(int x,
int y,
ResourceFactory factory) |
protected abstract Texture |
CompoundImage.getTile(int x,
int y,
ResourceFactory factory) |
Modifier and Type | Method and Description |
---|---|
void |
Coords.draw(Texture t,
Graphics g,
float x,
float y) |
Modifier and Type | Class and Description |
---|---|
class |
BaseTexture<T extends ManagedResource> |
Modifier and Type | Field and Description |
---|---|
private Texture |
BaseResourceFactory.glyphTexture |
private Texture |
BaseContext.maskTex |
private Texture |
BaseContext.ovalTex |
private Texture |
BaseContext.paintTex |
private Texture |
BaseContext.rectTex |
private Texture |
BaseResourceFactory.regionTexture |
private Texture |
BaseContext.wrapRectTex |
Modifier and Type | Field and Description |
---|---|
private java.util.Map<Image,Texture> |
BaseResourceFactory.clampTexCache |
private java.util.Map<Image,Texture> |
BaseResourceFactory.mipmapTexCache |
private java.util.Map<Image,Texture> |
BaseResourceFactory.repeatTexCache |
Modifier and Type | Method and Description |
---|---|
Texture |
BaseResourceFactory.createFloatTexture(int width,
int height) |
Texture |
BaseResourceFactory.createMaskTexture(int width,
int height,
Texture.WrapMode wrapMode) |
protected abstract Texture |
BaseTexture.createSharedTexture(Texture.WrapMode newMode)
Create a new version of this texture which shares the same
ManagedResource reference. |
Texture |
BaseResourceFactory.createTexture(Image image,
Texture.Usage usageHint,
Texture.WrapMode wrapMode) |
Texture |
BaseResourceFactory.createTexture(Image image,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
boolean useMipmap) |
Texture |
GlyphCache.getBackingStore() |
Texture |
BaseResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode) |
Texture |
BaseResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode,
boolean useMipmap) |
Texture |
BaseResourceFactory.getGlyphTexture() |
Texture |
BaseContext.getGradientTexture(Gradient grad,
BaseTransform xform,
int paintW,
int paintH,
MaskData maskData,
float bx,
float by,
float bw,
float bh) |
Texture |
BaseContext.getOvalTexture() |
Texture |
BaseContext.getRectTexture() |
Texture |
BaseResourceFactory.getRegionTexture() |
Texture |
BaseTexture.getSharedTexture(Texture.WrapMode altMode) |
Texture |
BaseContext.getWrapRectTexture() |
Texture |
BaseContext.validateMaskTexture(MaskData maskData,
boolean canScale) |
Modifier and Type | Method and Description |
---|---|
private void |
GlyphCache.addDataToQuad(GlyphCache.GlyphData data,
VertexBuffer vb,
Texture tex,
float x,
float y,
float dstw,
float dsth) |
void |
BaseGraphics.drawMappedTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx11,
float ty11,
float tx21,
float ty21,
float tx12,
float ty12,
float tx22,
float ty22) |
void |
BaseGraphics.drawTexture(Texture tex,
float x,
float y,
float w,
float h) |
void |
BaseGraphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
void |
BaseGraphics.drawTexture3SliceH(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dh2,
float sh1,
float sh2) |
void |
BaseGraphics.drawTexture3SliceV(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dv1,
float dv2,
float sv1,
float sv2) |
void |
BaseGraphics.drawTexture9Slice(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dv1,
float dh2,
float dv2,
float sh1,
float sv1,
float sh2,
float sv2) |
void |
BaseGraphics.drawTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx1,
float ty1,
float tx2,
float ty2) |
void |
BaseGraphics.drawTextureVO(Texture tex,
float topopacity,
float botopacity,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
void |
BaseResourceFactory.setGlyphTexture(Texture texture) |
void |
BaseResourceFactory.setRegionTexture(Texture texture) |
abstract void |
BaseContext.validatePaintOp(BaseGraphics g,
BaseTransform xform,
Texture maskTex,
float bx,
float by,
float bw,
float bh) |
abstract void |
BaseContext.validateTextureOp(BaseGraphics g,
BaseTransform xform,
Texture src,
PixelFormat format) |
Modifier and Type | Method and Description |
---|---|
protected void |
BaseResourceFactory.clearTextureCache(java.util.Map<Image,Texture> texCache) |
Constructor and Description |
---|
BaseResourceFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
BaseResourceFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
BaseResourceFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
Modifier and Type | Field and Description |
---|---|
private Texture |
RectanglePacker.backingStore
A reference to the backing store that was created (lazily)
by the backing store manager.
|
Modifier and Type | Method and Description |
---|---|
Texture |
RectanglePacker.getBackingStore()
Gets a reference to the backing store, creating it lazily if necessary.
|
Constructor and Description |
---|
RectanglePacker(Texture backingStore,
int width,
int height)
Creates a new RectanglePacker.
|
RectanglePacker(Texture backingStore,
int x,
int y,
int width,
int height,
boolean vertical) |
Modifier and Type | Field and Description |
---|---|
private static Texture |
PaintHelper.gradientCacheTexture |
private static Texture |
PaintHelper.gtexCacheTexture |
private Texture[] |
BaseShaderContext.State.lastTextures |
private Texture |
CachingShapeRepState.MaskTexData.maskTex |
Modifier and Type | Method and Description |
---|---|
(package private) static Texture |
PaintHelper.getGradientTexture(ShaderGraphics g,
Gradient paint) |
(package private) static Texture |
PaintHelper.getWrapGradientTexture(ShaderGraphics g) |
Modifier and Type | Method and Description |
---|---|
void |
BaseShaderGraphics.drawMappedTextureRaw2(Texture src1,
Texture src2,
float dx1,
float dy1,
float dx2,
float dy2,
float t1x11,
float t1y11,
float t1x21,
float t1y21,
float t1x12,
float t1y12,
float t1x22,
float t1y22,
float t2x11,
float t2y11,
float t2x21,
float t2y21,
float t2x12,
float t2y12,
float t2x22,
float t2y22) |
void |
BaseShaderGraphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
void |
BaseShaderGraphics.drawTexture3SliceH(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dh2,
float sh1,
float sh2) |
void |
BaseShaderGraphics.drawTexture3SliceV(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dv1,
float dv2,
float sv1,
float sv2) |
void |
BaseShaderGraphics.drawTexture9Slice(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dv1,
float dh2,
float dv2,
float sh1,
float sv1,
float sh2,
float sv2) |
void |
BaseShaderGraphics.drawTextureRaw2(Texture src1,
Texture src2,
float dx1,
float dy1,
float dx2,
float dy2,
float t1x1,
float t1y1,
float t1x2,
float t1y2,
float t2x1,
float t2y1,
float t2x2,
float t2y2) |
(package private) boolean |
BaseShaderGraphics.fillPrimRect(float x,
float y,
float w,
float h,
Texture rectTex,
Texture wrapTex,
float bx,
float by,
float bw,
float bh) |
private void |
BaseShaderContext.setTexture(int texUnit,
Texture tex) |
protected abstract void |
BaseShaderContext.updateTexture(int texUnit,
Texture tex) |
Shader |
BaseShaderContext.validateLCDOp(BaseShaderGraphics g,
BaseTransform xform,
Texture tex0,
Texture tex1,
boolean firstPass,
Paint fillColor) |
(package private) Shader |
BaseShaderContext.validateMaskTextureOp(BaseShaderGraphics g,
BaseTransform xform,
Texture tex0,
Texture tex1,
PixelFormat format) |
void |
BaseShaderContext.validatePaintOp(BaseGraphics g,
BaseTransform xform,
Texture maskTex,
float bx,
float by,
float bw,
float bh) |
(package private) Shader |
BaseShaderContext.validatePaintOp(BaseShaderGraphics g,
BaseTransform xform,
BaseShaderContext.MaskType maskType,
Texture maskTex,
float bx,
float by,
float bw,
float bh) |
(package private) Shader |
BaseShaderContext.validatePaintOp(BaseShaderGraphics g,
BaseTransform xform,
BaseShaderContext.MaskType maskType,
Texture maskTex,
float bx,
float by,
float bw,
float bh,
float k1,
float k2,
float k3,
float k4,
float k5,
float k6) |
(package private) Shader |
BaseShaderContext.validatePaintOp(BaseShaderGraphics g,
BaseTransform xform,
Texture maskTex,
float bx,
float by,
float bw,
float bh) |
void |
BaseShaderContext.validateTextureOp(BaseGraphics g,
BaseTransform xform,
Texture tex0,
PixelFormat format) |
(package private) Shader |
BaseShaderContext.validateTextureOp(BaseShaderGraphics g,
BaseTransform xform,
Texture[] textures,
PixelFormat format) |
(package private) Shader |
BaseShaderContext.validateTextureOp(BaseShaderGraphics g,
BaseTransform xform,
Texture tex0,
Texture tex1,
PixelFormat format) |
Constructor and Description |
---|
BaseShaderFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
BaseShaderFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
BaseShaderFactory(java.util.Map<Image,Texture> clampTexCache,
java.util.Map<Image,Texture> repeatTexCache,
java.util.Map<Image,Texture> mipmapTexCache) |
Modifier and Type | Method and Description |
---|---|
void |
MaskData.uploadToTexture(Texture tex,
int dstx,
int dsty,
boolean skipFlush) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
J2DRTTexture |
(package private) class |
J2DTexture |
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<Image,Texture> |
J2DResourceFactory.clampTexCache |
private static java.util.Map<Image,Texture> |
J2DResourceFactory.mipmapTexCache |
private static java.util.Map<Image,Texture> |
J2DResourceFactory.repeatTexCache |
Modifier and Type | Method and Description |
---|---|
protected Texture |
J2DTexture.createSharedTexture(Texture.WrapMode newMode) |
Texture |
J2DResourceFactory.createTexture(MediaFrame vdb) |
Texture |
J2DResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h) |
Texture |
J2DResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
Modifier and Type | Method and Description |
---|---|
void |
J2DPrismGraphics.drawMappedTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx11,
float ty11,
float tx21,
float ty21,
float tx12,
float ty12,
float tx22,
float ty22) |
void |
J2DPrismGraphics.drawTexture(Texture tex,
float x,
float y,
float w,
float h) |
void |
J2DPrismGraphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
void |
J2DPrismGraphics.drawTexture3SliceH(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dh2,
float sh1,
float sh2) |
void |
J2DPrismGraphics.drawTexture3SliceV(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dv1,
float dv2,
float sv1,
float sv2) |
void |
J2DPrismGraphics.drawTexture9Slice(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dv1,
float dh2,
float dv2,
float sh1,
float sv1,
float sh2,
float sv2) |
void |
J2DPrismGraphics.drawTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx1,
float ty1,
float tx2,
float ty2) |
void |
J2DPrismGraphics.drawTextureVO(Texture tex,
float topopacity,
float botopacity,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
boolean |
J2DResourceFactory.isCompatibleTexture(Texture tex) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
DummyRTTexture |
(package private) class |
DummyTexture |
Modifier and Type | Method and Description |
---|---|
protected Texture |
DummyTexture.createSharedTexture(Texture.WrapMode newMode) |
Texture |
DummyResourceFactory.createTexture(MediaFrame frame) |
Modifier and Type | Method and Description |
---|---|
boolean |
DummyResourceFactory.isCompatibleTexture(Texture tex) |
protected void |
DummyContext.updateTexture(int texUnit,
Texture tex) |
Modifier and Type | Method and Description |
---|---|
void |
ShaderGraphics.drawMappedTextureRaw2(Texture src1,
Texture src2,
float dx1,
float dy1,
float dx2,
float dy2,
float t1x11,
float t1y11,
float t1x21,
float t1y21,
float t1x12,
float t1y12,
float t1x22,
float t1y22,
float t2x11,
float t2y11,
float t2x21,
float t2y21,
float t2x12,
float t2y12,
float t2x22,
float t2y22) |
void |
ShaderGraphics.drawTextureRaw2(Texture src1,
Texture src2,
float dx1,
float dy1,
float dx2,
float dy2,
float t1x1,
float t1y1,
float t1x2,
float t1y2,
float t2x1,
float t2y1,
float t2x2,
float t2y2) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
SWArgbPreTexture |
class |
SWMaskTexture |
(package private) class |
SWPresentable |
(package private) class |
SWRTTexture |
(package private) class |
SWTexture |
Modifier and Type | Field and Description |
---|---|
private static java.util.Map<Image,Texture> |
SWResourceFactory.clampTexCache |
private static java.util.Map<Image,Texture> |
SWResourceFactory.mipmapTexCache |
private static java.util.Map<Image,Texture> |
SWResourceFactory.repeatTexCache |
Modifier and Type | Method and Description |
---|---|
(package private) static Texture |
SWTexture.create(SWResourceFactory factory,
PixelFormat formatHint,
Texture.WrapMode wrapMode,
int w,
int h) |
(package private) Texture |
SWArgbPreTexture.createSharedLockedTexture(Texture.WrapMode altMode) |
(package private) Texture |
SWMaskTexture.createSharedLockedTexture(Texture.WrapMode altMode) |
(package private) abstract Texture |
SWTexture.createSharedLockedTexture(Texture.WrapMode altMode)
Returns a new
Texture object sharing all of the information
from this texture, but using the new WrapMode . |
Texture |
SWResourceFactory.createTexture(MediaFrame vdb) |
Texture |
SWResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h) |
Texture |
SWResourceFactory.createTexture(PixelFormat formatHint,
Texture.Usage usageHint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
Texture |
SWTexture.getSharedTexture(Texture.WrapMode altMode) |
Modifier and Type | Method and Description |
---|---|
void |
SWGraphics.drawMappedTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx11,
float ty11,
float tx21,
float ty21,
float tx12,
float ty12,
float tx22,
float ty22) |
void |
SWGraphics.drawTexture(Texture tex,
float x,
float y,
float w,
float h) |
void |
SWGraphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
private void |
SWGraphics.drawTexture(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
int lEdge,
int rEdge,
int tEdge,
int bEdge) |
private void |
SWGraphics.drawTexture(Texture tex,
int imageMode,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
int lEdge,
int rEdge,
int tEdge,
int bEdge) |
void |
SWGraphics.drawTexture3SliceH(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dh2,
float sh1,
float sh2) |
void |
SWGraphics.drawTexture3SliceV(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dv1,
float dv2,
float sv1,
float sv2) |
void |
SWGraphics.drawTexture9Slice(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2,
float dh1,
float dv1,
float dh2,
float dv2,
float sh1,
float sv1,
float sh2,
float sv2) |
void |
SWGraphics.drawTextureRaw(Texture tex,
float dx1,
float dy1,
float dx2,
float dy2,
float tx1,
float ty1,
float tx2,
float ty2) |
void |
SWGraphics.drawTextureVO(Texture tex,
float topopacity,
float botopacity,
float dx1,
float dy1,
float dx2,
float dy2,
float sx1,
float sy1,
float sx2,
float sy2) |
boolean |
SWResourceFactory.isCompatibleTexture(Texture tex) |
Modifier and Type | Class and Description |
---|---|
class |
PrTexture<T extends Texture> |
Modifier and Type | Field and Description |
---|---|
private T |
PrTexture.tex |