OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clippedDstPoint
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.cpp
822
SkIPoint*
clippedDstPoint
) {
824
*
clippedDstPoint
= dstPoint;
828
clippedDstPoint
->fX -= clippedSrcRect->fLeft;
831
if (
clippedDstPoint
->fX < 0) {
832
clippedSrcRect->fLeft -=
clippedDstPoint
->fX;
833
clippedDstPoint
->fX = 0;
838
clippedDstPoint
->fY -= clippedSrcRect->fTop;
841
if (
clippedDstPoint
->fY < 0) {
842
clippedSrcRect->fTop -=
clippedDstPoint
->fY;
843
clippedDstPoint
->fY = 0
[
all
...]
/external/skia/src/gpu/
GrDrawTarget.cpp
822
SkIPoint*
clippedDstPoint
) {
824
*
clippedDstPoint
= dstPoint;
828
clippedDstPoint
->fX -= clippedSrcRect->fLeft;
831
if (
clippedDstPoint
->fX < 0) {
832
clippedSrcRect->fLeft -=
clippedDstPoint
->fX;
833
clippedDstPoint
->fX = 0;
838
clippedDstPoint
->fY -= clippedSrcRect->fTop;
841
if (
clippedDstPoint
->fY < 0) {
842
clippedSrcRect->fTop -=
clippedDstPoint
->fY;
843
clippedDstPoint
->fY = 0
[
all
...]
Completed in 32 milliseconds