OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstPoint
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit2/Shared/gtk/
ShareableBitmapGtk.cpp
43
void ShareableBitmap::paint(WebCore::GraphicsContext&, const WebCore::IntPoint&
dstPoint
, const WebCore::IntRect& srcRect)
/external/webkit/Source/WebKit2/Shared/qt/
ShareableBitmapQt.cpp
50
void ShareableBitmap::paint(GraphicsContext& context, const IntPoint&
dstPoint
, const IntRect& srcRect)
55
painter->drawImage(
dstPoint
, image, QRect(srcRect));
/external/webkit/Source/WebKit2/Shared/cg/
ShareableBitmapCG.cpp
65
void ShareableBitmap::paint(WebCore::GraphicsContext& context, const IntPoint&
dstPoint
, const IntRect& srcRect)
67
paintImage(context.platformContext(), makeCGImageCopy().get(),
dstPoint
, srcRect);
/external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp
169
POINT
dstPoint
;
170
dstPoint
.x = webViewRect.left;
171
dstPoint
.y = webViewRect.top;
173
::UpdateLayeredWindow(m_overlay, ::GetDC(0), &
dstPoint
, &size, hdc, &srcPoint, 0, &bf, ULW_ALPHA);
/external/webkit/Source/WebKit2/Shared/
ShareableBitmap.h
97
void paint(WebCore::GraphicsContext&, const WebCore::IntPoint&
dstPoint
, const WebCore::IntRect& srcRect);
/external/skia/src/gpu/
SkGpuDevice.cpp
549
void writeValue(int i, GrPoint*
dstPoint
) const {
551
dstPoint
->fX = SkScalarToGrScalar((i % 3) ? fRect.fRight :
553
dstPoint
->fY = SkScalarToGrScalar((i < 2) ? fRect.fTop :
566
void writeValue(int i, GrPoint*
dstPoint
) const {
568
dstPoint
->fX = (i % 3) ? GrIntToScalar(fRect.fRight) :
570
dstPoint
->fY = (i < 2) ? GrIntToScalar(fRect.fTop) :
584
void writeValue(int i, GrPoint*
dstPoint
) const {
590
(SkPoint*)
dstPoint
);
596
dstPoint
->fX = SkScalarToGrScalar(dst.fX);
597
dstPoint
->fY = SkScalarToGrScalar(dst.fY)
[
all
...]
Completed in 475 milliseconds