tu: Add missing last_baryf statistic

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24433>
This commit is contained in:
Connor Abbott
2023-08-01 18:32:30 +02:00
committed by Marge Bot
parent 662db8e894
commit 1f44d8d51d
+8
View File
@@ -5714,6 +5714,14 @@ tu_GetPipelineExecutableStatisticsKHR(
stat->value.u64 = exe->stats.max_half_reg + 1;
}
vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) {
WRITE_STR(stat->name, "Last interpolation instruction");
WRITE_STR(stat->description,
"The instruction where varying storage in Local Memory is released");
stat->format = VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR;
stat->value.u64 = exe->stats.last_baryf;
}
vk_outarray_append_typed(VkPipelineExecutableStatisticKHR, &out, stat) {
WRITE_STR(stat->name, "Instructions with SS sync bit");
WRITE_STR(stat->description,