mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 10:38:30 +02:00
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 commit295e5a17da) [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:
parent
204a36f270
commit
eb24e60cdc
1 changed files with 1 additions and 1 deletions
|
|
@ -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'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue