Home
last modified time | relevance | path

Searched refs:imageY (Results 1 – 2 of 2) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
DImage.java38 private float imageX, imageY, imageWidth, imageHeight; field in Image
108 imageY = (int)(height - imageHeight); in layout()
110 imageY = 0; in layout()
112 imageY = (int)(height / 2 - imageHeight / 2); in layout()
129 …ormDrawable)drawable).draw(batch, x + imageX, y + imageY, getOriginX() - imageX, getOriginY() - im… in draw()
134 …if (drawable != null) drawable.draw(batch, x + imageX, y + imageY, imageWidth * scaleX, imageHeigh… in draw()
188 return imageY; in getImageY()
/external/mesa3d/src/mesa/swrast/
Ds_zoom.c49 compute_zoomed_bounds(struct gl_context *ctx, GLint imageX, GLint imageY, in compute_zoomed_bounds() argument
57 ASSERT(spanY >= imageY); in compute_zoomed_bounds()
79 r0 = imageY + (GLint) ((spanY - imageY) * ctx->Pixel.ZoomY); in compute_zoomed_bounds()
80 r1 = imageY + (GLint) ((spanY + 1 - imageY) * ctx->Pixel.ZoomY); in compute_zoomed_bounds()