| 643 | } |
| 644 | |
| 645 | GPUTask* GPUTexture::UploadMipMapAsync(const BytesContainer& data, int32 mipIndex, bool copyData) |
| 646 | { |
| 647 | uint32 rowPitch, slicePitch; |
| 648 | ComputePitch(mipIndex, rowPitch, slicePitch); |
| 649 | return UploadMipMapAsync(data, mipIndex, rowPitch, slicePitch, copyData); |
| 650 | } |
| 651 | |
| 652 | GPUTask* GPUTexture::UploadMipMapAsync(const BytesContainer& data, int32 mipIndex, int32 rowPitch, int32 slicePitch, bool copyData) |
| 653 | { |
no test coverage detected