Re: [PATCHv5 01/34] drm/core: Add afbc helper functions

2020-02-20 Thread Boris Brezillon
On Tue, 17 Dec 2019 15:49:47 +0100 Andrzej Pietrasiewicz wrote: > +/** > + * drm_afbc_get_superblock_wh - extract afbc block width/height from modifier > + * @modifier: the modifier to be looked at > + * @w: address of a place to store the block width > + * @h: address of a place to store the blo

Re: [PATCHv5 01/34] drm/core: Add afbc helper functions

2020-02-20 Thread Boris Brezillon
On Tue, 17 Dec 2019 15:49:47 +0100 Andrzej Pietrasiewicz wrote: > Add checking if a modifier is afbc and getting afbc block size. > > Signed-off-by: Andrzej Pietrasiewicz > --- > drivers/gpu/drm/drm_fourcc.c | 53 > include/drm/drm_fourcc.h | 4 +++ >

Re: [PATCHv5 01/34] drm/core: Add afbc helper functions

2020-02-17 Thread james qian wang (Arm Technology China)
Hi Andrzej: On Tue, Dec 17, 2019 at 03:49:47PM +0100, Andrzej Pietrasiewicz wrote: > Add checking if a modifier is afbc and getting afbc block size. > > Signed-off-by: Andrzej Pietrasiewicz > --- > drivers/gpu/drm/drm_fourcc.c | 53 > include/drm/drm_fourcc.

[PATCHv5 01/34] drm/core: Add afbc helper functions

2019-12-17 Thread Andrzej Pietrasiewicz
Add checking if a modifier is afbc and getting afbc block size. Signed-off-by: Andrzej Pietrasiewicz --- drivers/gpu/drm/drm_fourcc.c | 53 include/drm/drm_fourcc.h | 4 +++ 2 files changed, 57 insertions(+) diff --git a/drivers/gpu/drm/drm_fourcc.c b/d