Home | History | Annotate | Download | only in gd3d11

Lines Matching refs:box

100 	pipe_box box;
103 box.x = pBox->left;
104 box.y = pBox->top;
105 box.z = pBox->front;
106 box.width = pBox->right - pBox->left;
107 box.height = pBox->bottom - pBox->top;
108 box.depth = pBox->back - pBox->front;
112 box.x = box.y = box.z = 0;
113 box.width = u_minify(resource->width0, level);
114 box.height = u_minify(resource->height0, level);
115 box.depth = u_minify(resource->depth0, level);
117 return box;