Re: [OE-core] [PATCH 2/2] mesa: make gallium swrast target optional

2019-04-30 Thread Marco Felsch
On 19-04-30 15:56, Alexander Kanavin wrote: > On Tue, 30 Apr 2019 at 14:10, Marco Felsch wrote: > > -GALLIUMDRIVERS = "swrast" > > +GALLIUMDRIVERS = "" > > +GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'swrast', > > ',swrast', '', d)}" > > GALLIUMDRIVERS_append

Re: [OE-core] [PATCH 2/2] mesa: make gallium swrast target optional

2019-04-30 Thread Alexander Kanavin
On Tue, 30 Apr 2019 at 14:10, Marco Felsch wrote: > -GALLIUMDRIVERS = "swrast" > +GALLIUMDRIVERS = "" > +GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'swrast', > ',swrast', '', d)}" > GALLIUMDRIVERS_append ="${@bb.utils.contains('PACKAGECONFIG', 'etnaviv', > ',etnaviv', '',

[OE-core] [PATCH 2/2] mesa: make gallium swrast target optional

2019-04-30 Thread Marco Felsch
Most the time we are compiling for embedded targets which have dedicated hardware combinations. Setting swrast default on isn't a good solution for such devices because if the hardware render node have an issue or don't support a special format/request mesa will fallback to the software renderer.