[PATCH xf86-video-amdgpu] extend conditional group GBM_BO_USE_LINEAR over both usages

Michel Dänzer michel at daenzer.net
Sun May 17 20:30:35 PDT 2015


On 17.05.2015 05:00, Brian Paterni wrote:
> Fixes 'GBM_BO_USE_LINEAR' undeclared error when compiling against older
> libgbm
> 
> Signed-off-by: Brian Paterni <bpaterni at gmail.com>
> ---
>  src/amdgpu_bo_helper.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/amdgpu_bo_helper.c b/src/amdgpu_bo_helper.c
> index e4f30f1..1de2a0a 100644
> --- a/src/amdgpu_bo_helper.c
> +++ b/src/amdgpu_bo_helper.c
> @@ -75,13 +75,13 @@ struct amdgpu_buffer *amdgpu_alloc_pixmap_bo(ScrnInfoPtr pScrn, int width,
>  		if ( bitsPerPixel == pScrn->bitsPerPixel)
>  			bo_use |= GBM_BO_USE_SCANOUT;
>  
> +#ifdef GBM_BO_USE_LINEAR
>  #ifdef CREATE_PIXMAP_USAGE_SHARED
>  		if (usage_hint == CREATE_PIXMAP_USAGE_SHARED) {
>  			bo_use |= GBM_BO_USE_LINEAR;
>  		}
>  #endif
>  
> -#ifdef GBM_BO_USE_LINEAR
>  		if (usage_hint & AMDGPU_CREATE_PIXMAP_LINEAR) {
>  			bo_use |= GBM_BO_USE_LINEAR;
>  		}
> 

Reviewed and applied, thanks!


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer


More information about the xorg-driver-ati mailing list