Re: [ft-devel] GSoC 2020 - Integrating Distance Field Generation in FreeType

2020-08-29 Thread Anuj Verma
>> I have written the final report for my project. >> >> You can check it out here: >> https://gitlab.com/-/snippets/2007070 > > Looks great, thanks! Thanks for checking it out! Anuj

Re: [ft-devel] GSoC 2020 - Integrating Distance Field Generation in FreeType

2020-08-29 Thread Werner LEMBERG
> I have written the final report for my project. > > You can check it out here: > https://gitlab.com/-/snippets/2007070 Looks great, thanks! Werner

GSoC finale

2020-08-29 Thread Werner LEMBERG
Dear Anuj, Priyesh, and Greg, GSoC soon ends! Here are some last remarks. * Starting with Sept. 1st, your GSoC branches in the FreeType repository should be frozen. If you want to continue with your work (which I hope you will do) please copy your branches to new ones and continue work

[ft-devel] GSoC 2020 - Integrating Distance Field Generation in FreeType

2020-08-29 Thread Anuj Verma
Hello All, I have written the final report for my project. You can check it out here: https://gitlab.com/-/snippets/2007070 I'm also attaching a copy if in case the link goes down. Thanks, Anuj anuj_report.md Description: Binary data

Re: mmap and Windows

2020-08-29 Thread Vincent Torri
On Sat, Aug 29, 2020 at 7:45 PM Werner LEMBERG wrote: > > > > should I write a builds/win32/ftsystem.c ? > > I guess yes; it's probably the simplest solution. ok, thank you Vincent Torri

Re: mmap and Windows

2020-08-29 Thread Vincent Torri
On Sat, Aug 29, 2020 at 7:07 PM Behdad Esfahbod wrote: > > Here's how HarfBuzz does it: > > https://github.com/harfbuzz/harfbuzz/blob/master/src/hb-blob.cc thank you. hopefully, i already know how to create shared memory on Windows regards Vincent Torri

Re: mmap and Windows

2020-08-29 Thread Werner LEMBERG
> should I write a builds/win32/ftsystem.c ? I guess yes; it's probably the simplest solution. Werner

Re: mmap and Windows

2020-08-29 Thread Behdad Esfahbod
Here's how HarfBuzz does it: https://github.com/harfbuzz/harfbuzz/blob/master/src/hb-blob.cc On Sat, Aug 29, 2020, 10:33 AM Vincent Torri wrote: > On Sat, Aug 29, 2020 at 11:52 AM Werner LEMBERG wrote: > > > > > > >> If this really makes a difference on Windows, and if you want to > > >>

Re: mmap and Windows

2020-08-29 Thread Vincent Torri
On Sat, Aug 29, 2020 at 11:52 AM Werner LEMBERG wrote: > > > >> If this really makes a difference on Windows, and if you want to > >> contribute such code, you are welcome to do so! > > > > I guess that mmap is useful with a font with a large size, right ? > > if so, do you have a font to test

Re: Logging Library-GSOC

2020-08-29 Thread Werner LEMBERG
> So, I have updated the code in `GSoC-2020-priyesh' branch such that > there are no separate project files for building dlg, Thanks. > in this branch I have used the `dlgwrap.c' method, [...] OK. > I have also pushed all the changes in this new branch, Please take a > look at that and let me

Re: GSOC Build tests

2020-08-29 Thread Werner LEMBERG
Hello Greg, sorry for the late reply. > As, discussed with Werner I have: > 1) added a simple config file (in CI/ft-tests.config) > 2) split the tests into smaller chunks > 3) changed the colors of the diff images to green / red > 4) added the diff images to the generated comparison page > 5)

Re: mmap and Windows

2020-08-29 Thread Werner LEMBERG
>> If this really makes a difference on Windows, and if you want to >> contribute such code, you are welcome to do so! > > I guess that mmap is useful with a font with a large size, right ? > if so, do you have a font to test with ? You want a very large font to play around? I suggest to try

Re: Logging Library-GSOC

2020-08-29 Thread Priyesh kumar
Hi Werner, *> * I wonder whether it is necessary to have a separate `dlg.vcxproj`> file (and friends). What about folding its contents into> `freetype.vcxproj`? The `dlg` stuff gets completely integrated into> FreeType and will be always linked statically...* So, I have updated the code in