-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Encode FontPath data into an ArrayBuffer #20346
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
Conversation
|
For the glyph paths, we should use the same format as "described" here: Lines 1491 to 1520 in d83cbb2
Using a SVG string is slightly slower and using this binary data would help to make the serialization a bit simpler. |
6d74dda to
9d2b39d
Compare
|
Thanks for the comments, @calixteman @timvandermeij they should be addressed now PTAL. |
9d2b39d to
089364a
Compare
5991539 to
692031c
Compare
692031c to
1460415
Compare
1460415 to
4fed542
Compare
|
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/6e6abdba7b06450/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/53b9e899a12d47f/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/53b9e899a12d47f/output.txt Total script time: 60.00 mins |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/6e6abdba7b06450/output.txt Total script time: 74.72 mins
Image differences available at: http://54.193.163.58:8877/6e6abdba7b06450/reftest-analyzer.html#web=eq.log |
|
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @nicolo-ribaudo received. Current queue size: 0 Live output at: http://54.241.84.105:8877/d057db0a22a3a8d/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @nicolo-ribaudo received. Current queue size: 0 Live output at: http://54.193.163.58:8877/be80322ea0a5bcf/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/d057db0a22a3a8d/output.txt Total script time: 60.00 mins |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/be80322ea0a5bcf/output.txt Total script time: 76.31 mins
Image differences available at: http://54.193.163.58:8877/be80322ea0a5bcf/reftest-analyzer.html#web=eq.log |
Serialize FontPath commands into a binary format and store it in an ArrayBuffer so that it can eventually be stored in a SharedArrayBuffer.
4fed542 to
3a85770
Compare
|
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @nicolo-ribaudo received. Current queue size: 0 Live output at: http://54.193.163.58:8877/4b27fb6097869d4/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @nicolo-ribaudo received. Current queue size: 0 Live output at: http://54.241.84.105:8877/7860f2a1e0b9aa0/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/7860f2a1e0b9aa0/output.txt Total script time: 40.56 mins
Image differences available at: http://54.241.84.105:8877/7860f2a1e0b9aa0/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/4b27fb6097869d4/output.txt Total script time: 77.16 mins
Image differences available at: http://54.193.163.58:8877/4b27fb6097869d4/reftest-analyzer.html#web=eq.log |
Serialize FontPath commands into a binary format
and store it in an ArrayBuffer so that it can
eventually be stored in a SharedArrayBuffer.
This PR is along the same lines as #20197 and #20340