-
Notifications
You must be signed in to change notification settings - Fork 549
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(wasm): Add mt and mt+simd, fix harfbuzz for emsdk 3.1.12 (#2286)
* feat(wasm): Add mt and mt+simd for emsdk 3.1.12 * chore: Adjust build flags for pthread, fix harfbuzz generation * chore: missing variables * chore: Adjust globbing for harbuzz wasm * chore: Adjust flags for C compiler * fix(SKSwapChainPanel): Invalid namespace for UWP target for Uno support * fix(threading): Adjust support for software rendering using secure context * ci: Bump dotnet version * fix: ensures GL and GLctx are available, and GLctx for threading.
- Loading branch information
1 parent
60b8056
commit e88acea
Showing
8 changed files
with
81 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<ItemGroup Condition="'$(IsUnoHead)' == 'True' and '$(UnoRuntimeIdentifier)' == 'WebAssembly'"> | ||
<Choose> | ||
<When Condition="'$(IsUnoHead)' == 'True' and '$(UnoRuntimeIdentifier)' == 'WebAssembly'"> | ||
|
||
<ItemGroup> | ||
<Content Include="@(SkiaSharpStaticLibrary)" Visible="false" /> | ||
</ItemGroup> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- Include the GL symbol when running under net7 (https://github.com/dotnet/runtime/issues/76077) --> | ||
<WasmShellEmccExportedRuntimeMethod Include="GL" /> | ||
|
||
<!-- Enable GLCtx when threading is available --> | ||
<WasmShellExtraEmccFlags Condition="'$(WasmShellEnableThreads)'=='True'" Include="-s OFFSCREEN_FRAMEBUFFER=1" /> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters