forked from lapce/floem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial wasm support (lapce#527)
* Add initial wasm support * Bump web-time version * Run cargo fmt * Fix webgpu example * Fix clippy warning * Switch to latest floem-winit commit * Fix conditional import in keyboard.rs * Fix webgpu example * Automatically follow canvas size by default * Remove unused import * Remove unused import * Use latest floem-vger from git
- Loading branch information
1 parent
61a9c2f
commit bdc5b17
Showing
34 changed files
with
926 additions
and
74 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist/ |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "webgpu" | ||
edition = "2021" | ||
license.workspace = true | ||
version.workspace = true | ||
|
||
[dependencies] | ||
im.workspace = true | ||
floem = { path = "../.." } | ||
cosmic-text = { version = "0.12.1", features = ["shape-run-cache"] } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
console_error_panic_hook = "0.1.6" | ||
console_log = "1.0" | ||
wgpu = { version = "22.0.0" } | ||
wasm-bindgen = "0.2" | ||
wasm-bindgen-futures = "0.4.30" | ||
web-sys = { version = "0.3.69", features = ["Document", "Window", "Element"] } |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Floem on WebGPU | ||
|
||
**WARNING**: WebGPU support is highly experimental right now. Expect missing features, bugs, or performance issues. | ||
|
||
## Requirements | ||
|
||
* [Trunk](https://trunkrs.dev/) | ||
* [Browser with WebGPU support](https://caniuse.com/webgpu) | ||
|
||
## Run | ||
|
||
From this directory, run: | ||
|
||
```sh | ||
trunk serve --open | ||
``` | ||
|
||
## Specifying the canvas element | ||
|
||
You must specify the ID of the HTML canvas element in the `WindowConfig` struct. | ||
|
||
```rust | ||
let window_config = WindowConfig::default() | ||
.with_web_config(|w| w.canvas_id("the-canvas")); | ||
``` | ||
|
||
The application will otherwise panic with the following message: | ||
|
||
``` | ||
Specify an id for the canvas. | ||
``` | ||
|
||
## Resizing the canvas | ||
|
||
By default, the floem window should automatically resize to fit the HTML canvas. | ||
This is usually the desired behavior, as the canvas will thereby integrate with the rest of the web application. | ||
You can change this behavior by specifying an explicit `size` in the `WindowConfig`. | ||
|
||
```rust | ||
let window_config = WindowConfig::default() | ||
.size(Size::new(800.0, 600.0)); | ||
``` | ||
|
||
Then, the canvas will have a fixed size and will not resize automatically based on the HTML canvas size. | ||
|
||
## Fonts | ||
|
||
This example comes with a selection of fonts in the `fonts` directory. | ||
For simplicity, these are embedded in the binary in this example. | ||
Without manually configuring fonts, cosmic-text won't find any fonts and will panic. | ||
At the time of this writing, the default fonts (precisely those in the `fonts` directory) are hardcoded in cosmic-text. |
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 |
---|---|---|
@@ -0,0 +1,97 @@ | ||
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. | ||
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) | ||
|
||
Bitstream Vera Fonts Copyright | ||
------------------------------ | ||
|
||
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is | ||
a trademark of Bitstream, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of the fonts accompanying this license ("Fonts") and associated | ||
documentation files (the "Font Software"), to reproduce and distribute the | ||
Font Software, including without limitation the rights to use, copy, merge, | ||
publish, distribute, and/or sell copies of the Font Software, and to permit | ||
persons to whom the Font Software is furnished to do so, subject to the | ||
following conditions: | ||
|
||
The above copyright and trademark notices and this permission notice shall | ||
be included in all copies of one or more of the Font Software typefaces. | ||
|
||
The Font Software may be modified, altered, or added to, and in particular | ||
the designs of glyphs or characters in the Fonts may be modified and | ||
additional glyphs or characters may be added to the Fonts, only if the fonts | ||
are renamed to names not containing either the words "Bitstream" or the word | ||
"Vera". | ||
|
||
This License becomes null and void to the extent applicable to Fonts or Font | ||
Software that has been modified and is distributed under the "Bitstream | ||
Vera" names. | ||
|
||
The Font Software may be sold as part of a larger software package but no | ||
copy of one or more of the Font Software typefaces may be sold by itself. | ||
|
||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, | ||
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME | ||
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING | ||
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF | ||
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE | ||
FONT SOFTWARE. | ||
|
||
Except as contained in this notice, the names of Gnome, the Gnome | ||
Foundation, and Bitstream Inc., shall not be used in advertising or | ||
otherwise to promote the sale, use or other dealings in this Font Software | ||
without prior written authorization from the Gnome Foundation or Bitstream | ||
Inc., respectively. For further information, contact: fonts at gnome dot | ||
org. | ||
|
||
Arev Fonts Copyright | ||
------------------------------ | ||
|
||
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of the fonts accompanying this license ("Fonts") and | ||
associated documentation files (the "Font Software"), to reproduce | ||
and distribute the modifications to the Bitstream Vera Font Software, | ||
including without limitation the rights to use, copy, merge, publish, | ||
distribute, and/or sell copies of the Font Software, and to permit | ||
persons to whom the Font Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright and trademark notices and this permission notice | ||
shall be included in all copies of one or more of the Font Software | ||
typefaces. | ||
|
||
The Font Software may be modified, altered, or added to, and in | ||
particular the designs of glyphs or characters in the Fonts may be | ||
modified and additional glyphs or characters may be added to the | ||
Fonts, only if the fonts are renamed to names not containing either | ||
the words "Tavmjong Bah" or the word "Arev". | ||
|
||
This License becomes null and void to the extent applicable to Fonts | ||
or Font Software that has been modified and is distributed under the | ||
"Tavmjong Bah Arev" names. | ||
|
||
The Font Software may be sold as part of a larger software package but | ||
no copy of one or more of the Font Software typefaces may be sold by | ||
itself. | ||
|
||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT | ||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL | ||
TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL | ||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM | ||
OTHER DEALINGS IN THE FONT SOFTWARE. | ||
|
||
Except as contained in this notice, the name of Tavmjong Bah shall not | ||
be used in advertising or otherwise to promote the sale, use or other | ||
dealings in this Font Software without prior written authorization | ||
from Tavmjong Bah. For further information, contact: tavmjong @ free | ||
. fr. |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,93 @@ | ||
Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. | ||
|
||
This Font Software is licensed under the SIL Open Font License, Version 1.1. | ||
This license is copied below, and is also available with a FAQ at: | ||
http://scripts.sil.org/OFL | ||
|
||
|
||
----------------------------------------------------------- | ||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | ||
----------------------------------------------------------- | ||
|
||
PREAMBLE | ||
The goals of the Open Font License (OFL) are to stimulate worldwide | ||
development of collaborative font projects, to support the font creation | ||
efforts of academic and linguistic communities, and to provide a free and | ||
open framework in which fonts may be shared and improved in partnership | ||
with others. | ||
|
||
The OFL allows the licensed fonts to be used, studied, modified and | ||
redistributed freely as long as they are not sold by themselves. The | ||
fonts, including any derivative works, can be bundled, embedded, | ||
redistributed and/or sold with any software provided that any reserved | ||
names are not used by derivative works. The fonts and derivatives, | ||
however, cannot be released under any other type of license. The | ||
requirement for fonts to remain under this license does not apply | ||
to any document created using the fonts or their derivatives. | ||
|
||
DEFINITIONS | ||
"Font Software" refers to the set of files released by the Copyright | ||
Holder(s) under this license and clearly marked as such. This may | ||
include source files, build scripts and documentation. | ||
|
||
"Reserved Font Name" refers to any names specified as such after the | ||
copyright statement(s). | ||
|
||
"Original Version" refers to the collection of Font Software components as | ||
distributed by the Copyright Holder(s). | ||
|
||
"Modified Version" refers to any derivative made by adding to, deleting, | ||
or substituting -- in part or in whole -- any of the components of the | ||
Original Version, by changing formats or by porting the Font Software to a | ||
new environment. | ||
|
||
"Author" refers to any designer, engineer, programmer, technical | ||
writer or other person who contributed to the Font Software. | ||
|
||
PERMISSION & CONDITIONS | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of the Font Software, to use, study, copy, merge, embed, modify, | ||
redistribute, and sell modified and unmodified copies of the Font | ||
Software, subject to the following conditions: | ||
|
||
1) Neither the Font Software nor any of its individual components, | ||
in Original or Modified Versions, may be sold by itself. | ||
|
||
2) Original or Modified Versions of the Font Software may be bundled, | ||
redistributed and/or sold with any software, provided that each copy | ||
contains the above copyright notice and this license. These can be | ||
included either as stand-alone text files, human-readable headers or | ||
in the appropriate machine-readable metadata fields within text or | ||
binary files as long as those fields can be easily viewed by the user. | ||
|
||
3) No Modified Version of the Font Software may use the Reserved Font | ||
Name(s) unless explicit written permission is granted by the corresponding | ||
Copyright Holder. This restriction only applies to the primary font name as | ||
presented to the users. | ||
|
||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font | ||
Software shall not be used to promote, endorse or advertise any | ||
Modified Version, except to acknowledge the contribution(s) of the | ||
Copyright Holder(s) and the Author(s) or with their explicit written | ||
permission. | ||
|
||
5) The Font Software, modified or unmodified, in part or in whole, | ||
must be distributed entirely under this license, and must not be | ||
distributed under any other license. The requirement for fonts to | ||
remain under this license does not apply to any document created | ||
using the Font Software. | ||
|
||
TERMINATION | ||
This license becomes null and void if any of the above conditions are | ||
not met. | ||
|
||
DISCLAIMER | ||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT | ||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE | ||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL | ||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM | ||
OTHER DEALINGS IN THE FONT SOFTWARE. |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,93 @@ | ||
Copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. | ||
|
||
This Font Software is licensed under the SIL Open Font License, Version 1.1. | ||
This license is copied below, and is also available with a FAQ at: | ||
https://openfontlicense.org | ||
|
||
|
||
----------------------------------------------------------- | ||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | ||
----------------------------------------------------------- | ||
|
||
PREAMBLE | ||
The goals of the Open Font License (OFL) are to stimulate worldwide | ||
development of collaborative font projects, to support the font creation | ||
efforts of academic and linguistic communities, and to provide a free and | ||
open framework in which fonts may be shared and improved in partnership | ||
with others. | ||
|
||
The OFL allows the licensed fonts to be used, studied, modified and | ||
redistributed freely as long as they are not sold by themselves. The | ||
fonts, including any derivative works, can be bundled, embedded, | ||
redistributed and/or sold with any software provided that any reserved | ||
names are not used by derivative works. The fonts and derivatives, | ||
however, cannot be released under any other type of license. The | ||
requirement for fonts to remain under this license does not apply | ||
to any document created using the fonts or their derivatives. | ||
|
||
DEFINITIONS | ||
"Font Software" refers to the set of files released by the Copyright | ||
Holder(s) under this license and clearly marked as such. This may | ||
include source files, build scripts and documentation. | ||
|
||
"Reserved Font Name" refers to any names specified as such after the | ||
copyright statement(s). | ||
|
||
"Original Version" refers to the collection of Font Software components as | ||
distributed by the Copyright Holder(s). | ||
|
||
"Modified Version" refers to any derivative made by adding to, deleting, | ||
or substituting -- in part or in whole -- any of the components of the | ||
Original Version, by changing formats or by porting the Font Software to a | ||
new environment. | ||
|
||
"Author" refers to any designer, engineer, programmer, technical | ||
writer or other person who contributed to the Font Software. | ||
|
||
PERMISSION & CONDITIONS | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of the Font Software, to use, study, copy, merge, embed, modify, | ||
redistribute, and sell modified and unmodified copies of the Font | ||
Software, subject to the following conditions: | ||
|
||
1) Neither the Font Software nor any of its individual components, | ||
in Original or Modified Versions, may be sold by itself. | ||
|
||
2) Original or Modified Versions of the Font Software may be bundled, | ||
redistributed and/or sold with any software, provided that each copy | ||
contains the above copyright notice and this license. These can be | ||
included either as stand-alone text files, human-readable headers or | ||
in the appropriate machine-readable metadata fields within text or | ||
binary files as long as those fields can be easily viewed by the user. | ||
|
||
3) No Modified Version of the Font Software may use the Reserved Font | ||
Name(s) unless explicit written permission is granted by the corresponding | ||
Copyright Holder. This restriction only applies to the primary font name as | ||
presented to the users. | ||
|
||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font | ||
Software shall not be used to promote, endorse or advertise any | ||
Modified Version, except to acknowledge the contribution(s) of the | ||
Copyright Holder(s) and the Author(s) or with their explicit written | ||
permission. | ||
|
||
5) The Font Software, modified or unmodified, in part or in whole, | ||
must be distributed entirely under this license, and must not be | ||
distributed under any other license. The requirement for fonts to | ||
remain under this license does not apply to any document created | ||
using the Font Software. | ||
|
||
TERMINATION | ||
This license becomes null and void if any of the above conditions are | ||
not met. | ||
|
||
DISCLAIMER | ||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT | ||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE | ||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL | ||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM | ||
OTHER DEALINGS IN THE FONT SOFTWARE. |
Binary file not shown.
Oops, something went wrong.