`ICompositionImportedGpuImage.ImportCompeted` should be called `ImportCompleted`
See original GitHub issueDescribe the bug
Here is the interface ICompositionImportedGpuImage
:
The member ImportCompeted
should be called ImportCompleted
.
To Reproduce See the above source code.
Expected behavior
The member ImportCompeted
should be called ImportCompleted
.
Screenshots N/A
Desktop (please complete the following information):
- OS: Linux (ArcoLinux), KDE/Wayland
- Version 11.0.0-rc1.1
Issue Analytics
- State:
- Created 3 months ago
- Reactions:2
- Comments:10 (10 by maintainers)
Top Results From Across the Web
[SPEC] External GPU memory interop (OpenGL, Vulkan ...
To update said copy one needs to provide a GPU-backed image with some means to wait for rendering to be completed:.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@maxkatz6 Note that netstandard2.0 doesn’t support interface default implementation, so adding a member to the interface will result in binary breaking change as well. So you are in a situation that either fix is introducing breaking change unless you don’t fix it forever. I searched the entire GitHub using ImportCompeted, seems that currently no one is using it except Avalonia and its fork: https://github.com/search?q=ImportCompeted&type=code My suggestion is to fix it now before people actually start to use it, and a release 11.0.1 ASAP, then mark 11.0.0 nuget package as obsoleted. Only in this way can we minimize the impact.
@kekekeks is it OK if I obsolete
ImportCompeted
?