I am using the Docs to implement some Skia Sharp in a Xamarin project to move some images around on the screen and it works well following these docs:
However in the TouchManipulation code it uses:
SKMatrix.PostConcat(ref matrix, touchMatrix);
But PostConcat has been depreciated and for the life of me, I can't find what is supposed to be used in its place? I am barely dangerous with Skia I understand the basics and got this working but would dearly love to make this warning go away and then update the Docs to reflect the change needed so others following don't get the same warning.
Any ideas?
Have you tried just writing:
That isn't obsolete.