Ejemplo n.º 1
0
 protected override void CopyTextureCore(
     Texture source,
     uint srcX, uint srcY, uint srcZ,
     uint srcMipLevel,
     uint srcBaseArrayLayer,
     Texture destination,
     uint dstX, uint dstY, uint dstZ,
     uint dstMipLevel,
     uint dstBaseArrayLayer,
     uint width, uint height, uint depth,
     uint layerCount)
 {
     _currentCommands.CopyTexture(
         source,
         srcX, srcY, srcZ,
         srcMipLevel,
         srcBaseArrayLayer,
         destination,
         dstX, dstY, dstZ,
         dstMipLevel,
         dstBaseArrayLayer,
         width, height, depth,
         layerCount);
 }