Re: [Mesa-dev] [PATCH 3/5] Add a place to enable extensions that are common to all DRI drivers

2014-06-30 Thread Ian Romanick
On 06/13/2014 05:59 PM, Neil Roberts wrote: > This adds a function called _mesa_init_driver_extensions that is called by all > DRI-based drivers. The intention is that any extensions that are implemented > directly by _mesa_init_driver_functions without any driver-specific > entrypoints will be ena

Re: [Mesa-dev] [PATCH 3/5] Add a place to enable extensions that are common to all DRI drivers

2014-06-13 Thread Jason Ekstrand
Neil, I've been thinking about this same thing. My one comment is that it might be good to call that function after the driver has installed its extensions. That way you can make meta extensions dependant on driver extensions. Not sure how useful that is though. --Jason Ekstrand On Jun 13, 2014

[Mesa-dev] [PATCH 3/5] Add a place to enable extensions that are common to all DRI drivers

2014-06-13 Thread Neil Roberts
This adds a function called _mesa_init_driver_extensions that is called by all DRI-based drivers. The intention is that any extensions that are implemented directly by _mesa_init_driver_functions without any driver-specific entrypoints will be enabled here. --- src/mesa/drivers/common/driverfuncs.