diff options
author | Dave Airlie <[email protected]> | 2017-05-02 09:58:33 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-05-03 06:00:35 +1000 |
commit | 052487be4ccd6b4ad7a8f0fac22729bb72acf549 (patch) | |
tree | 750d758b5b1d36945849093b8a56449b29aceac2 /src/amd/vulkan/radv_radeon_winsys.h | |
parent | 7e8d0a402b0a0db431da04f5126853de50729ed7 (diff) |
radv: remove some members of radeon surface.
We would be storing this info twice per image, no need to,
remove it from the surface struct.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_radeon_winsys.h')
-rw-r--r-- | src/amd/vulkan/radv_radeon_winsys.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/amd/vulkan/radv_radeon_winsys.h b/src/amd/vulkan/radv_radeon_winsys.h index d934e0a568d..48d72b91471 100644 --- a/src/amd/vulkan/radv_radeon_winsys.h +++ b/src/amd/vulkan/radv_radeon_winsys.h @@ -184,16 +184,10 @@ struct radeon_surf_level { /* surface defintions from the winsys */ struct radeon_surf { /* These are inputs to the calculator. */ - uint32_t npix_x; - uint32_t npix_y; - uint32_t npix_z; uint32_t blk_w; uint32_t blk_h; uint32_t blk_d; - uint32_t array_size; - uint32_t last_level; uint32_t bpe; - uint32_t nsamples; uint32_t flags; /* These are return values. Some of them can be set by the caller, but @@ -343,6 +337,7 @@ struct radeon_winsys { void (*cs_dump)(struct radeon_winsys_cs *cs, FILE* file, uint32_t trace_id); int (*surface_init)(struct radeon_winsys *ws, + const struct radeon_surf_info *surf_info, struct radeon_surf *surf); int (*surface_best)(struct radeon_winsys *ws, |