Re: [Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-29 Thread Nicolai Hähnle
On 29.11.2017 08:10, Sahu, Satyajit wrote: On 11/28/2017 9:33 PM, Nicolai Hähnle wrote: On 28.11.2017 09:34, Sahu, Satyajit wrote: [snip] --- a/src/gallium/targets/dri/dri.sym +++ b/src/gallium/targets/dri/dri.sym @@ -4,6 +4,11 @@    __driDriverGetExtensions*;    nouveau_drm_s

Re: [Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-28 Thread Sahu, Satyajit
On 11/28/2017 9:33 PM, Nicolai Hähnle wrote: On 28.11.2017 09:34, Sahu, Satyajit wrote: [snip] --- a/src/gallium/targets/dri/dri.sym +++ b/src/gallium/targets/dri/dri.sym @@ -4,6 +4,11 @@   __driDriverGetExtensions*;   nouveau_drm_screen_create;   radeon_drm_winsys_c

Re: [Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-28 Thread Nicolai Hähnle
On 28.11.2017 09:34, Sahu, Satyajit wrote: [snip] --- a/src/gallium/targets/dri/dri.sym +++ b/src/gallium/targets/dri/dri.sym @@ -4,6 +4,11 @@   __driDriverGetExtensions*;   nouveau_drm_screen_create;   radeon_drm_winsys_create; +    ac_compute_surface; +    ac_que

Re: [Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-28 Thread Sahu, Satyajit
On 11/27/2017 5:26 PM, Nicolai Hähnle wrote: On 24.11.2017 06:22, Satyajit Sahu wrote: Add tiled to linear conversion and expose outside mesa. This function converts tiled image to linear and vice versa. One of the use-case is, a chromiumos test case where the captured fb is compared against

Re: [Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-27 Thread Nicolai Hähnle
On 24.11.2017 06:22, Satyajit Sahu wrote: Add tiled to linear conversion and expose outside mesa. This function converts tiled image to linear and vice versa. One of the use-case is, a chromiumos test case where the captured fb is compared against a reference image. As the fb is tiled mode it nee

[Mesa-dev] [PATCH v2] radeonsi: Adding tiled to linear conversion functionality

2017-11-23 Thread Satyajit Sahu
Add tiled to linear conversion and expose outside mesa. This function converts tiled image to linear and vice versa. One of the use-case is, a chromiumos test case where the captured fb is compared against a reference image. As the fb is tiled mode it needs to be converted before comparision. Also