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 <bpate...@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
_______________________________________________
xorg-driver-ati mailing list
xorg-driver-ati@lists.x.org
http://lists.x.org/mailman/listinfo/xorg-driver-ati

Reply via email to