static void CopyTexture( Texture srcTexture, Texture dstTexture )

Summary

Copies pixel data from one texture to another on the GPU. This does not automatically resize or scale the texture, format and size should be equal.

static void CopyTexture( Texture srcTexture, Texture dstTexture, int srcMipSlice, int srcArraySlice, int srcMipLevels, int dstMipSlice, int dstArraySlice, int dstMipLevels )

Obsolete

Use the CopyTexture overload without 'srcMipLevels' and 'dstMipLevels' parameters instead.

static void CopyTexture( Texture srcTexture, Texture dstTexture, int srcMipSlice, int srcArraySlice, int dstMipSlice, int dstArraySlice )

Summary

Copies pixel data from one texture to another on the GPU. This does not automatically resize or scale the texture, format and size should be equal. This one lets you copy to/from arrays / specific mips.
people
Log in to reply
You can't reply if you're not logged in. That would be crazy.