forked from eden-emu/eden
[video_core] Improve asynchronous shader building description (#2568)
This improves the asynchronous shader building description. Reviewed-on: eden-emu/eden#2568 Co-authored-by: MaranBr <maranbr@outlook.com> Co-committed-by: MaranBr <maranbr@outlook.com>
This commit is contained in:
parent
2482846cf6
commit
42280f34d6
2 changed files with 1 additions and 8 deletions
|
@ -296,9 +296,7 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QObject* parent)
|
||||||
INSERT(Settings,
|
INSERT(Settings,
|
||||||
use_asynchronous_shaders,
|
use_asynchronous_shaders,
|
||||||
tr("Use asynchronous shader building (Hack)"),
|
tr("Use asynchronous shader building (Hack)"),
|
||||||
tr("Enables asynchronous shader compilation, which may reduce shader stutter.\nThis "
|
tr("Enables asynchronous shader compilation, which may reduce shader stutter."));
|
||||||
"feature "
|
|
||||||
"is experimental."));
|
|
||||||
INSERT(Settings, use_fast_gpu_time, QString(), QString());
|
INSERT(Settings, use_fast_gpu_time, QString(), QString());
|
||||||
INSERT(Settings,
|
INSERT(Settings,
|
||||||
fast_gpu_time,
|
fast_gpu_time,
|
||||||
|
|
|
@ -896,11 +896,6 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) {
|
||||||
.pName = "main",
|
.pName = "main",
|
||||||
.pSpecializationInfo = nullptr,
|
.pSpecializationInfo = nullptr,
|
||||||
});
|
});
|
||||||
/*
|
|
||||||
if (program[stage]->entries.uses_warps && device.IsGuestWarpSizeSupported(stage_ci.stage)) {
|
|
||||||
stage_ci.pNext = &subgroup_size_ci;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
VkPipelineCreateFlags flags{};
|
VkPipelineCreateFlags flags{};
|
||||||
if (device.IsKhrPipelineExecutablePropertiesEnabled() && Settings::values.renderer_debug.GetValue()) {
|
if (device.IsKhrPipelineExecutablePropertiesEnabled() && Settings::values.renderer_debug.GetValue()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue