Searched defs:shouldRespectImageOrientation (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DDragImage.cpp69 PassOwnPtr<DragImage> DragImage::create(Image* image, RespectImageOrientationEnum shouldRespectImageOrientation, float deviceScaleFactor) argument
83 if (shouldRespectImageOrientation == RespectImageOrientation)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DBitmapImage.cpp266 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation) argument
285 if (shouldRespectImageOrientation == RespectImageOrientation)
H A DGraphicsContext.cpp1068 void GraphicsContext::drawImage(Image* image, const IntPoint& p, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation) argument
1072 drawImage(image, FloatRect(IntRect(p, image->size())), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation);
1075 void GraphicsContext::drawImage(Image* image, const IntRect& r, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation) argument
1079 drawImage(image, FloatRect(r), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation);
1082 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation) argument
1084 drawImage(image, dest, src, op, WebBlendModeNormal, shouldRespectImageOrientation);
1094 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation) argument
1098 image->draw(this, dest, src, op, blendMode, shouldRespectImageOrientation);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.cpp2271 RespectImageOrientationEnum RenderObject::shouldRespectImageOrientation() const function in class:blink::RenderObject
2276 || (document().settings() && document().settings()->shouldRespectImageOrientation() && isHTMLImageElement(node())) ? RespectImageOrientation : DoNotRespectImageOrientation;

Completed in 1400 milliseconds