Lines Matching refs:fLeft
21 GrGLint fLeft; member
30 return &fLeft; in asInts()
32 GR_STATIC_ASSERT(0 == offsetof(GrGLIRect, fLeft)); in asInts()
38 int* asInts() { return &fLeft; } in asInts()
41 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight)); in pushToGLViewport()
45 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight)); in pushToGLScissor()
67 fLeft = glRect.fLeft + leftOffset; in setRelativeTo()
81 return fLeft <= glRect.fLeft && in contains()
83 fLeft + fWidth >= glRect.fLeft + glRect.fWidth && in contains()
87 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;} in invalidate()
88 bool isInvalid() const { return fLeft == -1 && fWidth == -1 && fBottom == -1 in isInvalid()