OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clippedSrcRect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.cpp
863
SkIRect*
clippedSrcRect
,
865
*
clippedSrcRect
= srcRect;
869
if (
clippedSrcRect
->fLeft < 0) {
870
clippedDstPoint->fX -=
clippedSrcRect
->fLeft;
871
clippedSrcRect
->fLeft = 0;
874
clippedSrcRect
->fLeft -= clippedDstPoint->fX;
879
if (
clippedSrcRect
->fTop < 0) {
880
clippedDstPoint->fY -=
clippedSrcRect
->fTop;
881
clippedSrcRect
->fTop = 0;
884
clippedSrcRect
->fTop -= clippedDstPoint->fY
[
all
...]
SkGpuDevice.cpp
862
SkRect
clippedSrcRect
= SkRect::Make(*clippedSrcIRect);
863
inv.mapRect(&
clippedSrcRect
);
866
clippedSrcRect
.offset(srcRectPtr->fLeft, srcRectPtr->fTop);
867
if (!
clippedSrcRect
.intersect(*srcRectPtr)) {
872
clippedSrcRect
.roundOut(clippedSrcIRect);
884
SkIRect*
clippedSrcRect
) const {
892
determine_clipped_src_rect(fContext, bitmap, srcRectPtr,
clippedSrcRect
);
893
*tileSize = determine_tile_size(bitmap, *
clippedSrcRect
, maxTileSize);
921
determine_clipped_src_rect(fContext, bitmap, srcRectPtr,
clippedSrcRect
);
923
size_t usedTileBytes = get_tile_count(*
clippedSrcRect
, kBmpSmallTileSize)
[
all
...]
SkGpuDevice.h
179
// The tileSize and
clippedSrcRect
will be valid only if true is returned.
185
SkIRect*
clippedSrcRect
) const;
195
const SkIRect&
clippedSrcRect
,
/external/chromium_org/third_party/skia/tests/
ReadPixelsTest.cpp
170
SkIRect
clippedSrcRect
= DEV_RECT;
171
if (!
clippedSrcRect
.intersect(srcRect)) {
172
clippedSrcRect
.setEmpty();
182
if (
clippedSrcRect
.contains(devx, devy)) {
Completed in 368 milliseconds