anv: Disable transform feedback on gen7

It's totally implementable, it's just that the plumbing is a bit
different and we never hooked it up.  Don't advertise a broken feature.

Fixes: 36ee2fd61c "anv: Implement the basic form of VK_EXT_transform_feedback"
(cherry picked from commit 295e5a17da)
[Juan A. Suarez: resolve trivial conflicts]
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

Conflicts:
	src/intel/vulkan/anv_extensions.py
This commit is contained in:
Jason Ekstrand 2019-07-25 14:54:20 -05:00 committed by Juan A. Suarez Romero
parent 204a36f270
commit eb24e60cdc

View file

@ -142,7 +142,7 @@ EXTENSIONS = [
Extension('VK_EXT_scalar_block_layout', 1, True),
Extension('VK_EXT_shader_stencil_export', 1, 'device->info.gen >= 9'),
Extension('VK_EXT_shader_viewport_index_layer', 1, True),
Extension('VK_EXT_transform_feedback', 1, True),
Extension('VK_EXT_transform_feedback', 1, 'device->info.gen >= 8'),
Extension('VK_EXT_vertex_attribute_divisor', 3, True),
Extension('VK_EXT_ycbcr_image_arrays', 1, True),
Extension('VK_ANDROID_external_memory_android_hardware_buffer', 3, 'ANDROID'),