-
Notifications
You must be signed in to change notification settings - Fork 538
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support WinRT 8.x #20
Comments
Purely out of my own personal interests I was poking around and found Skia and then immediately started looking for C# bindings. So, here I am and my first thought was "I wonder if it has .NET Core support" 😄 Great work on this library so far. Very cool stuff. I'm watching how this progresses and when .NET Core support lands I think it will be time for me to have a little fun. Keep up the awesome work! |
Just a reference to #111 |
This is now available with .NET Standard 1.3 support and .NET Core support on I will not be investigating Win 8 bits as this is an "old" system that is going out, and there are technical difficulties. One of the biggest is the compiler/language. Skia uses C++11 features, which are only available in the VC2015 compiler. However, Win8 apps appear to be only supported but the VC2013 compiler. Classic Desktop / WPF apps can still be built, as this uses the Windows 7 native library under the If there is a need for Win 8 Store apps, and it is possible to get a build out, then we can re-open this. I don't thing that modification to the native skia to not use C++11 features is an option as there will have to be many changes, as well as maintenance. |
@mattleibow You rock! |
Hi @mattleibow, Thanks for all your work on Skia, it looks like great technology. Unfortunately for the next year or so, my company is maintaining a WinRT (Windows 8) app, that we are upgrading with mapping functionality. We are tied to WinRT because our clients use riggidized tablets which only run Windows 8. All toll our clients have tens of thousands of the devices so the switch over to Windows 10 will take some time. If there was a port to WinRT it would be a huge help. We are hoping to build some sophisticated geospatial mapping features, so a highly performant renderer like one provided by Skia would be ideal. If a port to WinRT is still a possibility, please let me know. Best regards, |
I am also very interested in using skia libraries in windows 8.1 phone devices. Our company released an app for a large company that said needed it for windows 10 and android devices. Now they have windows 8 phones and refuse to switch to windows 10. Is there any hope or a preview version?? ;) Best Regards |
I am not very hopeful - not at all actually. This is a sad case of physical/technical limitation. Skia is C++11, and requires the VC++15 compiler. This cannot produce libraries for Win8. http://stackoverflow.com/questions/31452290/c11-14-features-for-windows-phone-8-1 Real sad, but unless somebody wants to undertake porting skia back to an older C++, this is probably not going to happen. |
what about linux support? |
@ChangePlaces Check out #90! It is supported, we just haven't done any public/CI builds yet. I am working with our release engineering to get some linux build bots up. Try this on your linux: ./bootstrapper.sh -t everything It will pop out the native bits, managed bits and a .NET core NuGet. |
wow - you guys are awesome! thanks! |
Ok, Thank you for your reply @mattleibow . Will have to convince them to go windows 10. |
fix: Update the Wasm.Bootstrapper to fix a memory corruption issue
No description provided.
The text was updated successfully, but these errors were encountered: