Home | History | Annotate | Download | only in renderer

Lines Matching refs:srcBox

3339     D3D11_BOX srcBox;
3340 srcBox.left = area.x;
3341 srcBox.right = area.x + area.width;
3342 srcBox.top = area.y;
3343 srcBox.bottom = area.y + area.height;
3344 srcBox.front = 0;
3345 srcBox.back = 1;
3347 mDeviceContext->CopySubresourceRegion(stagingTex, 0, 0, 0, 0, srcTex, subResource, &srcBox);