Lines Matching defs:rect
646 void setViewport (const RenderContext& renderCtx, const Rectangle& rect)
648 renderCtx.getFunctions().viewport(rect.x, rect.y, rect.width, rect.height);
651 void readRectangle (const RenderContext& renderCtx, const Rectangle& rect, Surface& dst)
653 dst.setSize(rect.width, rect.height);
654 glu::readPixels(renderCtx, rect.x, rect.y, dst.getAccess());