OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fullRect
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/renderer/
skia_benchmarking_extension_unittest.cc
48
SkRect
fullRect
= SkRect::MakeWH(SkIntToScalar(100), SkIntToScalar(100));
54
canvas.clipRect(
fullRect
, SkRegion::kIntersect_Op, false);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEColorMatrix.cpp
175
IntRect
fullRect
= IntRect(IntPoint(), absolutePaintRect().size());
177
resultImage->context()->fillRect(
fullRect
, Color(m_values[4], m_values[9], m_values[14], m_values[19]));
FEComponentTransfer.cpp
175
IntRect
fullRect
= IntRect(IntPoint(), absolutePaintRect().size());
177
resultImage->context()->fillRect(
fullRect
, Color(rValues[0], gValues[0], bValues[0], aValues[0]));
/external/chromium_org/third_party/skia/tests/
DeferredCanvasTest.cpp
256
SkRect
fullRect
;
257
fullRect
.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(gWidth),
301
canvas->drawRect(
fullRect
, paint);
309
canvas->drawRect(
fullRect
, paint);
321
canvas->drawRect(
fullRect
, paint);
331
canvas->drawRect(
fullRect
, paint);
347
canvas->drawRect(
fullRect
, paint);
359
canvas->drawRect(
fullRect
, paint);
380
canvas->drawRect(
fullRect
, paint);
392
canvas->drawRect(
fullRect
, paint)
[
all
...]
/development/perftests/panorama/feature_mos/src/mosaic/
Blend.cpp
205
MosaicRect
fullRect
;
207
fullRect
.left = (int) floor(global_rect.lft); // min-x
208
fullRect
.top = (int) floor(global_rect.bot); // min-y
209
fullRect
.right = (int) ceil(global_rect.rgt); // max-x
210
fullRect
.bottom = (int) ceil(global_rect.top);// max-y
211
Mwidth = (unsigned short) (
fullRect
.right -
fullRect
.left + 1);
212
Mheight = (unsigned short) (
fullRect
.bottom -
fullRect
.top + 1);
218
xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) -
fullRect
.left + 1)
[
all
...]
Completed in 236 milliseconds