Home | History | Annotate | Download | only in state_tracker

Lines Matching defs:region

210  * \param x, y, w, h  the region of interest of the 2D image.
261 * Upload data to a rectangular sub-region. Lots of choices how to do this:
342 struct pipe_box region;
345 region.x = src->width0 / 2;
346 region.y = src->height0 / 2;
347 region.z = 0;
348 region.width = 1;
349 region.height = 1;
350 region.depth = 1;
352 xfer = pipe->get_transfer(pipe, src, 0, PIPE_TRANSFER_READ, &region);