Example #1
0
 /// <summary>
 ///     Creates a copy of the texture <br />
 ///     Updates to the copy do not affect the original texture
 /// </summary>
 /// <param name="textureRef">Original texture reference</param>
 /// <returns>New texture reference of the copy</returns>
 public static CTextureRef CopyTexture(CTextureRef textureRef)
 {
     return(_Draw.CopyTexture(textureRef));
 }