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()
70 fLeft = leftOffset; in setRelativeTo()
84 return fLeft <= 0 && in contains()
86 fLeft + fWidth >= width && in contains()
90 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;} in invalidate()
91 bool isInvalid() const { return fLeft == -1 && fWidth == -1 && fBottom == -1 in isInvalid()