Re: [Pixman] [PATCH] [dither] Don't use GNU extension for binary numbers

2019-06-11 Thread John Emmas
On 10/06/2019 17:33, Matt Turner wrote: Thanks. Pushed. ___ Yes, pixman is happily compiling with MSVC again this morning. Thanks guys. John ___ Pixman mailing list Pixman@lists.freedesktop.org

Re: [Pixman] [PATCH] [dither] Don't use GNU extension for binary numbers

2019-06-10 Thread Matt Turner
Thanks. Pushed. ___ Pixman mailing list Pixman@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/pixman

[Pixman] [PATCH] [dither] Don't use GNU extension for binary numbers

2019-06-10 Thread basile-pixman
From: Basile Clement The dithering code (specifically `dither_factor_bayer_8`) uses a GNU extension for binary notation, eg 0b001. This is not supported by MSVC (at least) and breaks the build on this platform [1]. This patches uses hexadecimal notation instead, fixing the build. [1]: