Package | Description |
---|---|
com.sun.prism | |
com.sun.prism.d3d | |
com.sun.prism.es2 | |
com.sun.prism.impl | |
com.sun.prism.j2d | |
com.sun.prism.null3d | |
com.sun.prism.sw |
Modifier and Type | Field and Description |
---|---|
private Texture.WrapMode |
Texture.WrapMode.simulatedBy |
private Texture.WrapMode |
Texture.WrapMode.simulates |
private Texture.WrapMode |
MultiTexture.wrapMode |
Modifier and Type | Method and Description |
---|---|
Texture.WrapMode |
MultiTexture.getWrapMode() |
Texture.WrapMode |
Texture.getWrapMode()
Returns the
WrapMode for this texture. |
Texture.WrapMode |
Texture.WrapMode.simulatedVersion() |
static Texture.WrapMode |
Texture.WrapMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Texture.WrapMode[] |
Texture.WrapMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Texture |
ResourceFactory.createMaskTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
ResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
ResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
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(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 |
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. |
int |
ResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
ResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
Texture |
MultiTexture.getSharedTexture(Texture.WrapMode altMode) |
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. |
boolean |
Texture.WrapMode.isCompatibleWith(Texture.WrapMode requestedMode) |
boolean |
ResourceFactory.isWrapModeSupported(Texture.WrapMode mode)
Returns true iff the indicated
wrap mode is directly
supported (i.e. |
Constructor and Description |
---|
MultiTexture(MultiTexture sharedTex,
Texture.WrapMode newMode) |
MultiTexture(PixelFormat format,
Texture.WrapMode wrapMode,
int width,
int height) |
WrapMode(Texture.WrapMode simulates) |
Modifier and Type | Method and Description |
---|---|
D3DRTTexture |
D3DResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
D3DRTTexture |
D3DResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
protected Texture |
D3DTexture.createSharedTexture(Texture.WrapMode newMode) |
D3DTexture |
D3DResourceFactory.createTexture(PixelFormat format,
Texture.Usage usagehint,
Texture.WrapMode wrapMode,
int w,
int h) |
D3DTexture |
D3DResourceFactory.createTexture(PixelFormat format,
Texture.Usage usagehint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
int |
D3DResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
D3DResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
Constructor and Description |
---|
D3DRTTexture(D3DContext context,
Texture.WrapMode wrapMode,
long pResource,
int physicalWidth,
int physicalHeight,
int contentWidth,
int contentHeight) |
D3DRTTexture(D3DContext context,
Texture.WrapMode wrapMode,
long pResource,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
int samples) |
D3DTexture(D3DContext context,
PixelFormat format,
Texture.WrapMode wrapMode,
long pResource,
int physicalWidth,
int physicalHeight,
int contentWidth,
int contentHeight,
boolean isRTT) |
D3DTexture(D3DContext context,
PixelFormat format,
Texture.WrapMode wrapMode,
long pResource,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
boolean isRTT,
int samples,
boolean useMipmap) |
D3DTexture(D3DTexture sharedTex,
Texture.WrapMode altMode) |
Modifier and Type | Field and Description |
---|---|
private Texture.WrapMode |
ES2TextureData.lastAssociatedWrapMode |
Modifier and Type | Method and Description |
---|---|
Texture.WrapMode |
ES2TextureData.getWrapMode() |
Modifier and Type | Method and Description |
---|---|
(package private) static ES2RTTexture |
ES2RTTexture.create(ES2Context context,
int w,
int h,
Texture.WrapMode wrapMode,
boolean msaa) |
(package private) static ES2Texture |
ES2Texture.create(ES2Context context,
PixelFormat format,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
RTTexture |
ES2ResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
ES2ResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
protected Texture |
ES2Texture.createSharedTexture(Texture.WrapMode newMode) |
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) |
(package private) static int |
ES2RTTexture.getCompatibleDimension(ES2Context context,
int dim,
Texture.WrapMode wrapMode) |
int |
ES2ResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
ES2ResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
void |
ES2TextureData.setWrapMode(Texture.WrapMode wrapMode) |
(package private) void |
GLContext.updateWrapState(int texID,
Texture.WrapMode wrapMode) |
Constructor and Description |
---|
ES2RTTexture(ES2Context context,
ES2TextureResource<ES2RTTextureData> resource,
Texture.WrapMode wrapMode,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
int maxContentWidth,
int maxContentHeight) |
ES2Texture(ES2Context context,
ES2TextureResource<T> resource,
PixelFormat format,
Texture.WrapMode wrapMode,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
boolean useMipmap) |
ES2Texture(ES2Context context,
ES2TextureResource<T> resource,
PixelFormat format,
Texture.WrapMode wrapMode,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
int maxContentWidth,
int maxContentHeight,
boolean useMipmap) |
ES2Texture(ES2Texture sharedTex,
Texture.WrapMode newMode) |
Modifier and Type | Field and Description |
---|---|
private Texture.WrapMode |
BaseTexture.wrapMode |
Modifier and Type | Method and Description |
---|---|
Texture.WrapMode |
BaseTexture.getWrapMode() |
Modifier and Type | Method and Description |
---|---|
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 |
BaseResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode) |
Texture |
BaseResourceFactory.getCachedTexture(Image image,
Texture.WrapMode wrapMode,
boolean useMipmap) |
Texture |
BaseTexture.getSharedTexture(Texture.WrapMode altMode) |
boolean |
BaseResourceFactory.isWrapModeSupported(Texture.WrapMode mode) |
Constructor and Description |
---|
BaseTexture(BaseTexture<T> sharedTex,
Texture.WrapMode newMode,
boolean useMipmap) |
BaseTexture(T resource,
PixelFormat format,
Texture.WrapMode wrapMode,
int width,
int height) |
BaseTexture(T resource,
PixelFormat format,
Texture.WrapMode wrapMode,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
boolean useMipmap) |
BaseTexture(T resource,
PixelFormat format,
Texture.WrapMode wrapMode,
int physicalWidth,
int physicalHeight,
int contentX,
int contentY,
int contentWidth,
int contentHeight,
int maxContentWidth,
int maxContentHeight,
boolean useMipmap) |
Modifier and Type | Method and Description |
---|---|
(package private) static J2DTexture |
J2DTexture.create(PixelFormat format,
Texture.WrapMode wrapMode,
int w,
int h) |
RTTexture |
J2DResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
J2DResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
protected Texture |
J2DTexture.createSharedTexture(Texture.WrapMode newMode) |
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) |
int |
J2DResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
J2DResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
Constructor and Description |
---|
J2DTexture(java.awt.image.BufferedImage bimg,
PixelFormat format,
PixelSetter setter,
Texture.WrapMode wrapMode) |
J2DTexture(J2DTexture sharedTex,
Texture.WrapMode altMode) |
Modifier and Type | Method and Description |
---|---|
RTTexture |
DummyResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
DummyResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
protected Texture |
DummyTexture.createSharedTexture(Texture.WrapMode newMode) |
DummyTexture |
DummyResourceFactory.createTexture(PixelFormat format,
Texture.Usage usagehint,
Texture.WrapMode wrapMode,
int w,
int h) |
DummyTexture |
DummyResourceFactory.createTexture(PixelFormat format,
Texture.Usage usagehint,
Texture.WrapMode wrapMode,
int w,
int h,
boolean useMipmap) |
int |
DummyResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
DummyResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
Constructor and Description |
---|
DummyRTTexture(DummyContext context,
Texture.WrapMode wrapMode,
int contentWidth,
int contentHeight) |
DummyTexture(DummyContext context,
PixelFormat format,
Texture.WrapMode wrapMode,
int contentWidth,
int contentHeight) |
DummyTexture(DummyContext context,
PixelFormat format,
Texture.WrapMode wrapMode,
int contentWidth,
int contentHeight,
boolean isRTT) |
Modifier and Type | Field and Description |
---|---|
private Texture.WrapMode |
SWTexture.wrapMode |
Modifier and Type | Method and Description |
---|---|
Texture.WrapMode |
SWTexture.getWrapMode() |
Modifier and Type | Method and Description |
---|---|
(package private) static Texture |
SWTexture.create(SWResourceFactory factory,
PixelFormat formatHint,
Texture.WrapMode wrapMode,
int w,
int h) |
RTTexture |
SWResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode) |
RTTexture |
SWResourceFactory.createRTTexture(int width,
int height,
Texture.WrapMode wrapMode,
boolean msaa) |
(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(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) |
int |
SWResourceFactory.getRTTHeight(int h,
Texture.WrapMode wrapMode) |
int |
SWResourceFactory.getRTTWidth(int w,
Texture.WrapMode wrapMode) |
Texture |
SWTexture.getSharedTexture(Texture.WrapMode altMode) |
Constructor and Description |
---|
SWArgbPreTexture(SWArgbPreTexture sharedTex,
Texture.WrapMode altMode) |
SWArgbPreTexture(SWResourceFactory factory,
Texture.WrapMode wrapMode,
int w,
int h) |
SWMaskTexture(SWMaskTexture sharedTex,
Texture.WrapMode altMode) |
SWMaskTexture(SWResourceFactory factory,
Texture.WrapMode wrapMode,
int w,
int h) |
SWTexture(SWResourceFactory factory,
Texture.WrapMode wrapMode,
int w,
int h) |
SWTexture(SWTexture sharedTex,
Texture.WrapMode altMode) |