Home | History | Annotate | Download | only in gl

Lines Matching refs:fLeft

21     GrGLint   fLeft;
30 return &fLeft;
32 GR_STATIC_ASSERT(0 == offsetof(GrGLIRect, fLeft));
38 int* asInts() { return &fLeft; }
41 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
45 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
67 fLeft = glRect.fLeft + leftOffset;
81 return fLeft <= glRect.fLeft &&
83 fLeft + fWidth >= glRect.fLeft + glRect.fWidth &&
87 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}