diff options
author | Chad Versace <[email protected]> | 2015-11-13 16:01:35 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-12-03 15:26:11 -0800 |
commit | afdadec77f57b42d0c7f1f44c5ab87b636d38010 (patch) | |
tree | 31bc8f7d93876442bcfc58cf340e43245dc8a162 /src/vulkan/Makefile.am | |
parent | bda43a0f59e5f5877c10b2ce6727fba99d486d37 (diff) |
isl: Implement isl_surf_init() for gen4-gen9
This is a big code push. The patch is about 3000 lines.
Function isl_surf_init() calculates the physical layout of a surface.
The implementation is "complete" (but untested) for all 1D, 2D, 3D, and
cube surfaces for gen4 through gen9, except:
* gen9 1D surfaces
* gen9 Ys multisampled surfaces
* auxiliary surfaces (such as hiz, mcs, ccs)
Diffstat (limited to 'src/vulkan/Makefile.am')
-rw-r--r-- | src/vulkan/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/vulkan/Makefile.am b/src/vulkan/Makefile.am index 24391eafc0b..fd74393be95 100644 --- a/src/vulkan/Makefile.am +++ b/src/vulkan/Makefile.am @@ -92,7 +92,18 @@ VULKAN_SOURCES = \ anv_wsi.c \ anv_wsi_x11.c \ isl.c \ - isl_format_layout.c + isl_format_layout.c \ + isl_gen4.c \ + isl_gen4.h \ + isl_gen6.c \ + isl_gen6.h \ + isl_gen7.c \ + isl_gen7.h \ + isl_gen8.c \ + isl_gen8.h \ + isl_gen9.c \ + isl_gen9.h \ + $(NULL) BUILT_SOURCES = \ anv_entrypoints.h \ |