Home | History | Annotate | Download | only in swrast

Lines Matching refs:bufWidth

1417    const GLint bufWidth = (GLint) rb->Width;
1420 if (y < 0 || y >= bufHeight || x + (GLint) n < 0 || x >= bufWidth) {
1437 if (length > bufWidth) {
1438 length = bufWidth;
1441 else if ((GLint) (x + n) > bufWidth) {
1444 length = bufWidth - x;