OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shouldPaintAtLowQuality
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
ImageQualityController.h
56
bool
shouldPaintAtLowQuality
(GraphicsContext*, RenderObject*, Image*, const void* layer, const LayoutSize&);
ImageQualityController.cpp
130
bool ImageQualityController::
shouldPaintAtLowQuality
(GraphicsContext* context, RenderObject* object, Image* image, const void *layer, const LayoutSize& layoutSize)
RenderBoxModelObject.h
264
bool
shouldPaintAtLowQuality
(GraphicsContext*, Image*, const void*, const LayoutSize&);
RenderImage.cpp
475
bool useLowQualityScaling =
shouldPaintAtLowQuality
(context, image, image, alignedRect.size());
RenderBoxModelObject.cpp
145
bool RenderBoxModelObject::
shouldPaintAtLowQuality
(GraphicsContext* context, Image* image, const void* layer, const LayoutSize& size)
147
return ImageQualityController::imageQualityController()->
shouldPaintAtLowQuality
(context, this, image, layer, size);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGImage.cpp
169
useLowQualityScaling = ImageQualityController::imageQualityController()->
shouldPaintAtLowQuality
(paintInfo.context, this, image.get(), image.get(), LayoutSize(destRect.size()));
Completed in 255 milliseconds