lavapipe: disable line rasterization ext

need to add some gallium hooks for line drawing mode before this can
be reliably supported

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11762>
This commit is contained in:
Mike Blumenkrantz 2021-07-07 09:14:04 -04:00 committed by Marge Bot
parent b67a4ba4ad
commit 97c19ac358
3 changed files with 3 additions and 3 deletions

View File

@ -530,7 +530,7 @@ Khronos extensions that are not part of any Vulkan version:
VK_EXT_image_robustness DONE (anv, radv)
VK_EXT_index_type_uint8 DONE (anv, lvp, radv/gfx8+, v3dv, tu)
VK_EXT_inline_uniform_block DONE (anv, radv)
VK_EXT_line_rasterization DONE (anv, radv, lvp)
VK_EXT_line_rasterization DONE (anv, radv)
VK_EXT_memory_budget DONE (anv, radv, tu)
VK_EXT_memory_priority DONE (radv)
VK_EXT_multi_draw DONE (anv, lvp, radv)

View File

@ -9,7 +9,7 @@ VK_EXT_color_write_enable on RADV.
GL ES 3.1 on GT21x hardware.
VK_EXT_acquire_drm_display on RADV.
VK_EXT_vertex_input_dynamic_state on lavapipe
VK_EXT_line_rasterization and wideLines on lavapipe
wideLines on lavapipe
VK_EXT_multi_draw on ANV, lavapipe, and RADV
VK_KHR_separate_depth_stencil_layouts on lavapipe
VK_EXT_separate_stencil_usage on lavapipe

View File

@ -143,7 +143,7 @@ static const struct vk_device_extension_table lvp_device_extensions_supported =
.EXT_vertex_input_dynamic_state = true,
.EXT_custom_border_color = true,
.EXT_provoking_vertex = true,
.EXT_line_rasterization = true,
.EXT_line_rasterization = false,
.GOOGLE_decorate_string = true,
.GOOGLE_hlsl_functionality1 = true,
};