Lines Matching defs:box
325 struct pipe_box box;
326 subResourceBox(pResource->resource, 0, &level, &box);
335 &box,
339 memcpy(map, pInitialDataUP->pSysMem, box.width);
348 struct pipe_box box;
349 subResourceBox(pResource->resource, SubResource, &level, &box);
358 &box,
362 for (int z = 0; z < box.depth; ++z) {
368 0, 0, box.width, box.height,
520 struct pipe_box box;
521 subResourceBox(resource, SubResource, &level, &box);
531 &box,
538 &box,
683 struct pipe_box box;
684 box.x = 0;
685 box.y = 0;
686 box.z = 0 + layer;
687 box.width = u_minify(dst_resource->width0, level);
688 box.height = u_minify(dst_resource->height0, level);
689 box.depth = u_minify(dst_resource->depth0, level);
696 &box);
702 &box);
884 struct pipe_box box;
890 box.x = pDstBox->left;
891 box.y = pDstBox->top;
892 box.z = pDstBox->front + dst_layer;
893 box.width = pDstBox->right - pDstBox->left;
894 box.height = pDstBox->bottom - pDstBox->top;
895 box.depth = pDstBox->back - pDstBox->front;
897 subResourceBox(dst_resource, DstSubResource, &level, &box);
907 &box,
914 &box,
919 for (int z = 0; z < box.depth; ++z) {
925 0, 0, box.width, box.height,