Home | History | Annotate | Download | only in i965

Lines Matching refs:DrawBuffer

39    const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
55 if (ctx->DrawBuffer->_Xmin == ctx->DrawBuffer->_Xmax ||
56 ctx->DrawBuffer->_Ymin == ctx->DrawBuffer->_Ymax) {
69 scissor->xmin = ctx->DrawBuffer->_Xmin;
70 scissor->xmax = ctx->DrawBuffer->_Xmax - 1;
71 scissor->ymin = ctx->DrawBuffer->_Ymin;
72 scissor->ymax = ctx->DrawBuffer->_Ymax - 1;
76 scissor->xmin = ctx->DrawBuffer->_Xmin;
77 scissor->xmax = ctx->DrawBuffer->_Xmax - 1;
78 scissor->ymin = ctx->DrawBuffer->Height - ctx->DrawBuffer->_Ymax;
79 scissor->ymax = ctx->DrawBuffer->Height - ctx->DrawBuffer->_Ymin - 1;