diff options
author | Jason Ekstrand <[email protected]> | 2015-11-16 12:29:07 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-11-16 12:29:09 -0800 |
commit | de54b4b18fea9358cc6f0e7dc9f64256be00be06 (patch) | |
tree | e679f5ee3fe2d5ee4e3a8784ef4b1871d5de5d5d /src/vulkan/anv_pipeline.c | |
parent | cb9e2305f87e7f3bad5a1b619f5679b335052d46 (diff) |
anv: Only include the pack headers where needed
Previously, we were including gen7_pack.h, gen75_pack.h, and gen8_pack.h
in anv_private.h. As we add more gens, this is going to become untenable.
This commit moves things around so that we only use the pack headers when
and if we need them.
Diffstat (limited to 'src/vulkan/anv_pipeline.c')
-rw-r--r-- | src/vulkan/anv_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vulkan/anv_pipeline.c b/src/vulkan/anv_pipeline.c index a9cf16f79c2..6c9deaddda7 100644 --- a/src/vulkan/anv_pipeline.c +++ b/src/vulkan/anv_pipeline.c @@ -260,7 +260,7 @@ static const uint32_t vk_to_gen_primitive_type[] = { [VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_ADJ] = _3DPRIM_LINESTRIP_ADJ, [VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_ADJ] = _3DPRIM_TRILIST_ADJ, [VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_ADJ] = _3DPRIM_TRISTRIP_ADJ, - [VK_PRIMITIVE_TOPOLOGY_PATCH] = _3DPRIM_PATCHLIST_1 +/* [VK_PRIMITIVE_TOPOLOGY_PATCH] = _3DPRIM_PATCHLIST_1 */ }; static void |