Re: [Mesa-dev] [PATCH v2] gbm: convert gbm bo format to fourcc format on dma-buf import

2015-09-15 Thread Emil Velikov
Hello Ray, On 12 September 2015 at 20:25, Ray Strode wrote: > Hi Emil, > > Is this still on your radar? > Yes it still is. The bugreport mentioned does cover at least three distinct topics, one of which prodded me to complete a libdrm helper or two. With those done, and another pair of eyes check

Re: [Mesa-dev] [PATCH v2] gbm: convert gbm bo format to fourcc format on dma-buf import

2015-09-12 Thread Ray Strode
Hi Emil, Is this still on your radar? On Sun, Sep 6, 2015 at 6:09 PM, Ray Strode wrote: > On Sun, Sep 6, 2015 at 3:04 PM, Emil Velikov wrote: >> Have you seen an application where this causes problems ? Might if I >> add it to the commit log before pushing ? > It caused a problem for a proposed

Re: [Mesa-dev] [PATCH v2] gbm: convert gbm bo format to fourcc format on dma-buf import

2015-09-06 Thread Ray Strode
Hi, On Sun, Sep 6, 2015 at 3:04 PM, Emil Velikov wrote: > Have you seen an application where this causes problems ? Might if I > add it to the commit log before pushing ? It caused a problem for a proposed patch to cogl that I ultimately decided not to push after discussion with Daniel Stone. See

Re: [Mesa-dev] [PATCH v2] gbm: convert gbm bo format to fourcc format on dma-buf import

2015-09-06 Thread Emil Velikov
Hello Ray, On 28 August 2015 at 19:50, Ray Strode wrote: > From: Ray Strode > > At the moment if a gbm buffer is imported and the gbm buffer > has an old-style GBM_BO_FORMAT format, the import will crash, > since it's passed directly to DRI functions that expect > a fourcc format (as provided by

[Mesa-dev] [PATCH v2] gbm: convert gbm bo format to fourcc format on dma-buf import

2015-08-28 Thread Ray Strode
From: Ray Strode At the moment if a gbm buffer is imported and the gbm buffer has an old-style GBM_BO_FORMAT format, the import will crash, since it's passed directly to DRI functions that expect a fourcc format (as provided by the newer GBM_FORMAT definitions) This commit addresses the problem