Re: [Mesa-dev] [PATCH 1/4] ac/surface: don't set the display flag for obviously unsupported cases (v2)

2018-04-11 Thread Marek Olšák
On Tue, Apr 10, 2018 at 7:46 PM, Bas Nieuwenhuizen 
wrote:

> What is the addrlib assertion we are hitting?
>

128bpp formats can't set "display = true" even though the tiling is always
_D for 128bpp.

Marek


>
> On Tue, Apr 10, 2018 at 11:44 AM, Michel Dänzer 
> wrote:
> > On 2018-04-06 07:12 PM, Marek Olšák wrote:
> >> From: Marek Olšák 
> >>
> >> This enables the tile swizzle for some cases of the displayable micro
> mode,
> >> and it also fixes an addrlib assertion failure on Vega.
> >
> > [...]
> >
> >> diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
> >> index dd3189c67d0..ef6f1072abd 100644
> >> --- a/src/amd/vulkan/radv_image.c
> >> +++ b/src/amd/vulkan/radv_image.c
> >> @@ -919,20 +919,21 @@ radv_image_create(VkDevice _device,
> >>   if (!image)
> >>   return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
> >>
> >>   image->type = pCreateInfo->imageType;
> >>   image->info.width = pCreateInfo->extent.width;
> >>   image->info.height = pCreateInfo->extent.height;
> >>   image->info.depth = pCreateInfo->extent.depth;
> >>   image->info.samples = pCreateInfo->samples;
> >>   image->info.array_size = pCreateInfo->arrayLayers;
> >>   image->info.levels = pCreateInfo->mipLevels;
> >> + image->info.num_channels = 4; /* TODO: set this correctly */
> >
> > Maybe a radv developer can suggest something here? Anyway,
> >
> > Reviewed-by: Michel Dänzer 
> >
> >
> > --
> > Earthling Michel Dänzer   |   http://www.amd.com
> > Libre software enthusiast | Mesa and X developer
> > ___
> > mesa-dev mailing list
> > mesa-dev@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH 1/4] ac/surface: don't set the display flag for obviously unsupported cases (v2)

2018-04-10 Thread Bas Nieuwenhuizen
What is the addrlib assertion we are hitting?

On Tue, Apr 10, 2018 at 11:44 AM, Michel Dänzer  wrote:
> On 2018-04-06 07:12 PM, Marek Olšák wrote:
>> From: Marek Olšák 
>>
>> This enables the tile swizzle for some cases of the displayable micro mode,
>> and it also fixes an addrlib assertion failure on Vega.
>
> [...]
>
>> diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
>> index dd3189c67d0..ef6f1072abd 100644
>> --- a/src/amd/vulkan/radv_image.c
>> +++ b/src/amd/vulkan/radv_image.c
>> @@ -919,20 +919,21 @@ radv_image_create(VkDevice _device,
>>   if (!image)
>>   return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
>>
>>   image->type = pCreateInfo->imageType;
>>   image->info.width = pCreateInfo->extent.width;
>>   image->info.height = pCreateInfo->extent.height;
>>   image->info.depth = pCreateInfo->extent.depth;
>>   image->info.samples = pCreateInfo->samples;
>>   image->info.array_size = pCreateInfo->arrayLayers;
>>   image->info.levels = pCreateInfo->mipLevels;
>> + image->info.num_channels = 4; /* TODO: set this correctly */
>
> Maybe a radv developer can suggest something here? Anyway,
>
> Reviewed-by: Michel Dänzer 
>
>
> --
> Earthling Michel Dänzer   |   http://www.amd.com
> Libre software enthusiast | Mesa and X developer
> ___
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH 1/4] ac/surface: don't set the display flag for obviously unsupported cases (v2)

2018-04-10 Thread Michel Dänzer
On 2018-04-06 07:12 PM, Marek Olšák wrote:
> From: Marek Olšák 
> 
> This enables the tile swizzle for some cases of the displayable micro mode,
> and it also fixes an addrlib assertion failure on Vega.

[...]

> diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
> index dd3189c67d0..ef6f1072abd 100644
> --- a/src/amd/vulkan/radv_image.c
> +++ b/src/amd/vulkan/radv_image.c
> @@ -919,20 +919,21 @@ radv_image_create(VkDevice _device,
>   if (!image)
>   return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
>  
>   image->type = pCreateInfo->imageType;
>   image->info.width = pCreateInfo->extent.width;
>   image->info.height = pCreateInfo->extent.height;
>   image->info.depth = pCreateInfo->extent.depth;
>   image->info.samples = pCreateInfo->samples;
>   image->info.array_size = pCreateInfo->arrayLayers;
>   image->info.levels = pCreateInfo->mipLevels;
> + image->info.num_channels = 4; /* TODO: set this correctly */

Maybe a radv developer can suggest something here? Anyway,

Reviewed-by: Michel Dänzer 


-- 
Earthling Michel Dänzer   |   http://www.amd.com
Libre software enthusiast | Mesa and X developer
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev