OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcPoint
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp
165
POINT
srcPoint
;
166
srcPoint
.x = 0;
167
srcPoint
.y = 0;
173
::UpdateLayeredWindow(m_overlay, ::GetDC(0), &dstPoint, &size, hdc, &
srcPoint
, 0, &bf, ULW_ALPHA);
/external/webkit/Source/WebCore/platform/graphics/
Image.cpp
108
void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint&
srcPoint
, const FloatSize& scaledTileSize, ColorSpace styleColorSpace, CompositeOperator op)
125
oneTileRect.setX(destRect.x() + fmodf(fmodf(-
srcPoint
.x(), scaledTileSize.width()) - scaledTileSize.width(), scaledTileSize.width()));
126
oneTileRect.setY(destRect.y() + fmodf(fmodf(-
srcPoint
.y(), scaledTileSize.height()) - scaledTileSize.height(), scaledTileSize.height()));
Image.h
171
void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatPoint&
srcPoint
, const FloatSize& tileSize, ColorSpace styleColorSpace, CompositeOperator);
GraphicsContext.cpp
473
void GraphicsContext::drawTiledImage(Image* image, ColorSpace styleColorSpace, const IntRect& rect, const IntPoint&
srcPoint
, const IntSize& tileSize, CompositeOperator op, bool useLowQualityScale)
481
image->drawTiled(this, rect,
srcPoint
, tileSize, styleColorSpace, op);
484
image->drawTiled(this, rect,
srcPoint
, tileSize, styleColorSpace, op);
GraphicsContext.h
351
void drawTiledImage(Image*, ColorSpace styleColorSpace, const IntRect& destRect, const IntPoint&
srcPoint
, const IntSize& tileSize,
Completed in 519 milliseconds