Home
last modified time | relevance | path

Searched refs:m_shouldClampToSourceRect (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContextState.h67 , m_shouldClampToSourceRect(true) in GraphicsContextState()
87 , m_shouldClampToSourceRect(other.m_shouldClampToSourceRect) in GraphicsContextState()
140 bool m_shouldClampToSourceRect : 1; variable
DGraphicsContext.h146 …void setShouldClampToSourceRect(bool clampToSourceRect) { m_state->m_shouldClampToSourceRect = cla… in setShouldClampToSourceRect()
147 bool shouldClampToSourceRect() const { return m_state->m_shouldClampToSourceRect; } in shouldClampToSourceRect()
DGraphicsContext.cpp1231 …SkCanvas::DrawBitmapRectFlags flags = m_state->m_shouldClampToSourceRect ? SkCanvas::kNone_DrawBit… in drawBitmapRect()