Compare commits
3 commits
8b5c61d1a7
...
d170cc2e00
Author | SHA1 | Date | |
---|---|---|---|
d170cc2e00 | |||
42280f34d6 | |||
2482846cf6 |
4 changed files with 3 additions and 14 deletions
|
@ -694,7 +694,7 @@ private:
|
||||||
LOG_WARNING(Service_ACC, "(STUBBED) called");
|
LOG_WARNING(Service_ACC, "(STUBBED) called");
|
||||||
|
|
||||||
std::vector<u8> token_data(0x100);
|
std::vector<u8> token_data(0x100);
|
||||||
std::fill(token_data.begin(), token_data.end(), 0);
|
std::fill(token_data.begin(), token_data.end(), u8(0));
|
||||||
|
|
||||||
ctx.WriteBuffer(token_data, 0);
|
ctx.WriteBuffer(token_data, 0);
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,7 @@ endif()
|
||||||
# Dynarmic project options
|
# Dynarmic project options
|
||||||
option(DYNARMIC_ENABLE_CPU_FEATURE_DETECTION "Turning this off causes dynarmic to assume the host CPU doesn't support anything later than SSE3" ON)
|
option(DYNARMIC_ENABLE_CPU_FEATURE_DETECTION "Turning this off causes dynarmic to assume the host CPU doesn't support anything later than SSE3" ON)
|
||||||
|
|
||||||
if (PLATFORM_OPENBSD)
|
option(DYNARMIC_ENABLE_NO_EXECUTE_SUPPORT "Enables support for systems that require W^X" ${PLATFORM_OPENBSD})
|
||||||
option(DYNARMIC_ENABLE_NO_EXECUTE_SUPPORT "Enables support for systems that require W^X" ON)
|
|
||||||
else()
|
|
||||||
option(DYNARMIC_ENABLE_NO_EXECUTE_SUPPORT "Enables support for systems that require W^X" OFF)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
option(DYNARMIC_FATAL_ERRORS "Errors are fatal" OFF)
|
option(DYNARMIC_FATAL_ERRORS "Errors are fatal" OFF)
|
||||||
option(DYNARMIC_IGNORE_ASSERTS "Ignore asserts" OFF)
|
option(DYNARMIC_IGNORE_ASSERTS "Ignore asserts" OFF)
|
||||||
|
|
|
@ -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