mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
hasvk: Fix SPIR-V warning about TF unsupported on gen7.
It's supported now. Fixes:d82826ad44("anv: Implement VK_EXT_transform_feedback on Gen7") Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21228> (cherry picked from commited62eec58b) Conflicts: src/intel/ci/hasvk-hsw-fails.txt Stable: Removed non-existant CI files
This commit is contained in:
parent
9ead567ce7
commit
2b8579c7ab
2 changed files with 2 additions and 2 deletions
|
|
@ -868,7 +868,7 @@
|
|||
"description": "hasvk: Fix SPIR-V warning about TF unsupported on gen7.",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "d82826ad44465423407d1e4413d7d66bee82737c"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ anv_shader_stage_to_nir(struct anv_device *device,
|
|||
.subgroup_shuffle = true,
|
||||
.subgroup_vote = true,
|
||||
.tessellation = true,
|
||||
.transform_feedback = pdevice->info.ver >= 8,
|
||||
.transform_feedback = true,
|
||||
.variable_pointers = true,
|
||||
.vk_memory_model = true,
|
||||
.vk_memory_model_device_scope = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue