Searched defs:texture (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DBlitLoops.java71 // render-to-texture surface->surface ops
143 // texture->surface ops
148 // sw->texture ops
190 private static int createPackedParams(boolean isoblit, boolean texture, argument
197 ((texture ? 1 : 0) << OFFSET_TEXTURE) |
235 int srctype, boolean texture)
251 if (texture) {
253 // the sysmem data to the texture object
261 int packedParams = createPackedParams(false, texture,
299 boolean texture)
228 Blit(SurfaceData srcData, SurfaceData dstData, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, int srctype, boolean texture) argument
291 IsoBlit(SurfaceData srcData, SurfaceData dstData, BufferedImage srcImg, BufferedImageOp biop, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, boolean texture) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLBlitLoops.java65 // render-to-texture surface->surface ops
148 // texture->surface ops
153 // sw->texture ops
201 private static int createPackedParams(boolean isoblit, boolean texture, argument
208 ((texture ? 1 : 0) << OFFSET_TEXTURE) |
246 int srctype, boolean texture)
262 if (texture) {
264 // the sysmem data to the texture object
273 int packedParams = createPackedParams(false, texture,
303 boolean texture)
239 Blit(SurfaceData srcData, SurfaceData dstData, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, int srctype, boolean texture) argument
295 IsoBlit(SurfaceData srcData, SurfaceData dstData, BufferedImage srcImg, BufferedImageOp biop, Composite comp, Region clip, AffineTransform xform, int hint, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2, boolean texture) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBlitLoops.c97 * This method will copy, scale, or transform the source texture into the
99 * and OGLContext_SetTransform(). If the source texture is
115 * The source is a render-to-texture surface. These surfaces differ
116 * from regular texture objects in that the bottom scanline (of
118 * texture object. Therefore, we need to adjust the sy1/sy2
121 * In texture coordinates, the top-left corner of the image content
133 // texture coordinates in the range [0,srcw] and [0,srch] instead of
238 * OpenGL "Surface" to a destination OpenGL "Surface", using an OpenGL texture
246 * hardware). However, texture mapped quads do respect the GL_MODELVIEW
249 * subregion of the source surface is copied into a cached texture til
444 OGLBlitLoops_IsoBlit(JNIEnv *env, OGLContext *oglc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jboolean texture, jboolean rtt, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument
565 OGLBlitLoops_Blit(JNIEnv *env, OGLContext *oglc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jint srctype, jboolean texture, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument
[all...]
H A DOGLRenderQueue.c295 jboolean texture = EXTRACT_BOOLEAN(packedParams, local
305 xform, hint, texture, rtt,
311 xform, hint, srctype, texture,
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRCompositeManager.java49 XRSurfaceData texture; field in class:XRCompositeManager
142 public void setTexturePaint(XRSurfaceData texture) { argument
143 this.texture = texture;
144 src = texture;
304 return src == texture;
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp417 * texture that the image resides in, D3DTEXF_LINEAR will use pixels
420 * the texture wrap mode to D3DTADDRESS_CLAMP, which solves the problem
422 * match the texture bounds, we need to perform this as a four-part
430 * Likewise, if the image bounds are equal to the texture bounds,
434 // These values represent the bottom-right corner of source texture
451 // First, render a majority of the source texture, from the top-left
472 * - the source bounds are sufficiently inside the texture bounds or
473 * - the image bounds are equal to the texture bounds (as is the
487 * This method will copy, scale, or transform the source texture into the
489 * and D3DContext::SetTransform(). If the source texture i
689 D3DBlitLoops_IsoBlit(JNIEnv *env, D3DContext *d3dc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jboolean texture, jboolean rtt, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument
799 D3DBlitLoops_Blit(JNIEnv *env, D3DContext *d3dc, jlong pSrcOps, jlong pDstOps, jboolean xform, jint hint, jint srctype, jboolean texture, jint sx1, jint sy1, jint sx2, jint sy2, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument
[all...]
H A DD3DRenderQueue.cpp431 jboolean texture = EXTRACT_BOOLEAN(packedParams, local
441 xform, hint, texture, rtt,
448 xform, hint, srctype, texture,

Completed in 1271 milliseconds