Compare commits

..

1 Commits

Author SHA1 Message Date
yuzubot
bf99e05f33 Android #120 2023-11-02 00:57:37 +00:00
2 changed files with 1 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
| Pull Request | Commit | Title | Author | Merged? |
|----|----|----|----|----|
| [11943](https://github.com/yuzu-emu/yuzu//pull/11943) | [`41701052d`](https://github.com/yuzu-emu/yuzu//pull/11943/files) | renderer_vulkan: minimize transform feedback support log | [liamwhite](https://github.com/liamwhite/) | Yes |
End of merge log. You can find the original README.md below the break.

View File

@@ -923,13 +923,9 @@ void RasterizerVulkan::UpdateDynamicStates() {
}
void RasterizerVulkan::HandleTransformFeedback() {
static std::once_flag warn_unsupported;
const auto& regs = maxwell3d->regs;
if (!device.IsExtTransformFeedbackSupported()) {
std::call_once(warn_unsupported, [&] {
LOG_ERROR(Render_Vulkan, "Transform feedbacks used but not supported");
});
LOG_ERROR(Render_Vulkan, "Transform feedbacks used but not supported");
return;
}
query_cache.CounterEnable(VideoCommon::QueryType::StreamingByteCount,