ExportCustomSettings fix

This commit is contained in:
Ismael 2023-05-05 17:58:04 +02:00
parent 75f32ed2e5
commit e347850715
1 changed files with 3 additions and 2 deletions

View File

@ -48,7 +48,8 @@ class ExportCustomSettingsPreference @JvmOverloads constructor(context : Context
- Docked: $systemIsDocked
GPU
- Driver: $gpuDriver (executors: $gpuExecSlotCount slots, threshold of $gpuExecFlushThreshold)
- Driver: $gpuDriver
- Executors: $gpuExecSlotCount slots (threshold: $gpuExecFlushThreshold)
- Triple buffering: $gpuTripleBuffering, DMI: $gpuDMI
- Max clocks: $gpuForceMaxGpuClocks, free guest texture memory: $gpuFreeGuestTextureMemory
- Disable shader cache: $gpuDisableShaderCache
@ -56,7 +57,7 @@ class ExportCustomSettingsPreference @JvmOverloads constructor(context : Context
HACKS
- Fast GPU readback: $hackFastGpuReadback, fast readback writes $hackFastReadbackWrite
- Disable GPU subgroup shuffle: $hackDisableSubgroupShuffle
""".trimIndent()
""".trimIndent().replace("true", "✔").replace("false", "✖")
)
MaterialAlertDialogBuilder(context)