[prev in list] [next in list] [prev in thread] [next in thread] 

List:       cairo
Subject:    Re: [cairo] color emoji support broken
From:       suzuki toshiya <mpsuzuki () hiroshima-u ! ac ! jp>
Date:       2019-05-31 12:38:44
Message-ID: 5CF11E3A.7080506 () hiroshima-u ! ac ! jp
[Download RAW message or body]

Matthias Clasen wrote:
> Thanks,
> 
> I later learned that there is already an MR for fixing this issue, by Florian \
> Muellner.

I must apologize and thank to Florian.

Regards,
mpsuzuki

> On Thu, May 30, 2019 at 11:37 PM suzuki toshiya \
> <mpsuzuki@hiroshima-u.ac.jp<mailto:mpsuzuki@hiroshima-u.ac.jp>> wrote: According to \
> the commit log when FT_PIXEL_MODE_BGRA was introduced to FreeType, 
> https://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=760d342d37ec9b26 \
> 420956e3421075d410571b65<https://jpn01.safelinks.protection.outlook.com/?url=https%3 \
> A%2F%2Fgit.savannah.gnu.org%2Fcgit%2Ffreetype%2Ffreetype2.git%2Fcommit%2F%3Fid%3D760 \
> d342d37ec9b26420956e3421075d410571b65&data=02%7C01%7Cmpsuzuki%40hiroshima-u.ac.jp%7C \
> 58ff6b7a5e9347bb474708d6e5c3bb12%7Cc40454ddb2634926868d8e12640d3750%7C1%7C0%7C636949 \
> 026149776833&sdata=qpyER4%2BcK4Qj1Bj10lFxZaZTwC1OzhYRvQkYo%2BFNYWs%3D&reserved=0> 
> FT_LOAD_COLOR macro (which we can test its availability by #ifdef) was introdcued
> at the same time. So replacing "#ifdef FT_PIXEL_MODE_BGRA" by "#ifdef \
> FT_LOAD_COLOR" would resolve this bug. Just I've submitted a merge request:
> 
> https://gitlab.freedesktop.org/cairo/cairo/merge_requests/25/diffs<https://jpn01.saf \
> elinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fcairo%2Fca \
> iro%2Fmerge_requests%2F25%2Fdiffs&data=02%7C01%7Cmpsuzuki%40hiroshima-u.ac.jp%7C58ff \
> 6b7a5e9347bb474708d6e5c3bb12%7Cc40454ddb2634926868d8e12640d3750%7C1%7C0%7C636949026149776833&sdata=HryLjLt0jUDM5OFtkDZOyHbY%2BlSdHDm1gehtkjU8%2Byw%3D&reserved=0>
>  
> Sincerely I apologize the trouble I caused, and thank to Matthias for finding
> this. I cannot thank you enoughly.
> 
> Regards,
> mpsuzuki
> 
> 
> suzuki toshiya wrote:
> > Dear Matthias,
> > 
> > Ahhh, I'm quite sorry. Using "ifdef" is not good to check the availability of
> > FT_PIXEL_MODE_BGRA.
> > This is an integer value declared as
> > 
> > typedef enum  FT_Pixel_Mode_
> > {
> > FT_PIXEL_MODE_NONE = 0,
> > FT_PIXEL_MODE_MONO,
> > FT_PIXEL_MODE_GRAY,
> > FT_PIXEL_MODE_GRAY2,
> > FT_PIXEL_MODE_GRAY4,
> > FT_PIXEL_MODE_LCD,
> > FT_PIXEL_MODE_LCD_V,
> > FT_PIXEL_MODE_BGRA,
> > 
> > FT_PIXEL_MODE_MAX      /* do not remove */
> > 
> > } FT_Pixel_Mode;
> > 
> > #ifdef is not good. Soon I would post a fix for that, by better configure script.
> > 
> > Regardss,
> > mpsuzuki
> > 
> > suzuki toshiya wrote:
> > > Dear Mattias,
> > > 
> > > Maybe this commit?
> > > 
> > > https://jpn01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcgit.freedeskt \
> > > op.org%2Fcairo%2Fcommit%2F%3Fid%3Dc0ed8ce1a111cb9472aef080ac3aa31526443f7c&amp;d \
> > > ata=02%7C01%7Cmpsuzuki%40hiroshima-u.ac.jp%7Cc9dd36ca27c4496b21a308d6e5747ea5%7C \
> > > c40454ddb2634926868d8e12640d3750%7C1%7C0%7C636948685861037983&amp;sdata=VzneUcB3 \
> > > sA50zMDep3IEji2yI4Sw%2BAsv2xK9s92mrow%3D&amp;reserved=0<https://jpn01.safelinks. \
> > > protection.outlook.com/?url=https%3A%2F%2Fcgit.freedesktop.org%2Fcairo%2Fcommit% \
> > > 2F%3Fid%3Dc0ed8ce1a111cb9472aef080ac3aa31526443f7c&data=02%7C01%7Cmpsuzuki%40hir \
> > > oshima-u.ac.jp%7C58ff6b7a5e9347bb474708d6e5c3bb12%7Cc40454ddb2634926868d8e12640d \
> > > 3750%7C1%7C0%7C636949026149786828&sdata=NpRh9beQ8q73oYL3%2BT5o0Tqixd3G9Ulz1doTRxGJW8Q%3D&reserved=0>
> > >  
> > > Sorry, please let me know more about your trouble.
> > > 
> > > > This breaks color Emoji support since the freetype headers don't define this.
> > > If so, and if we revert this, following "case FT_PIXEL_MODE_BGRA" would cause a \
> > > compilation error? 
> > > Regards,
> > > mpsuzuki
> > > 
> > > On 2019/05/31 2:09, Matthias Clasen wrote:
> > > > Some recent commit introduced an
> > > > 
> > > > #ifdef FT_PIXEL_MODE_BGRA
> > > > 
> > > > This breaks color Emoji support since the freetype headers don't define this.
> > > > 
> > > > Please revert
> > > > 
> --
> cairo mailing list
> cairo@cairographics.org<mailto:cairo@cairographics.org>
> https://lists.cairographics.org/mailman/listinfo/cairo<https://jpn01.safelinks.prote \
> ction.outlook.com/?url=https%3A%2F%2Flists.cairographics.org%2Fmailman%2Flistinfo%2F \
> cairo&data=02%7C01%7Cmpsuzuki%40hiroshima-u.ac.jp%7C58ff6b7a5e9347bb474708d6e5c3bb12 \
> %7Cc40454ddb2634926868d8e12640d3750%7C1%7C0%7C636949026149786828&sdata=hyUWZoIAijGyhIw9zMubPgzR64v6qCApqVmWAZSBggg%3D&reserved=0>
>  
-- 
cairo mailing list
cairo@cairographics.org
https://lists.cairographics.org/mailman/listinfo/cairo


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic