Add HDR option to settings menu (#2387)

This commit is contained in:
tomboylover93
2025-02-09 13:59:09 -03:00
committed by GitHub
parent 0e238c87cb
commit f3afbfbcec
5 changed files with 36 additions and 11 deletions

View File

@@ -341,6 +341,10 @@ void setNullGpu(bool enable) {
isNullGpu = enable;
}
void setAllowHDR(bool enable) {
isHDRAllowed = enable;
}
void setCopyGPUCmdBuffers(bool enable) {
shouldCopyGPUBuffers = enable;
}

View File

@@ -69,6 +69,7 @@ void setCollectShaderForDebug(bool enable);
void setShowSplash(bool enable);
void setAutoUpdate(bool enable);
void setNullGpu(bool enable);
void setAllowHDR(bool enable);
void setCopyGPUCmdBuffers(bool enable);
void setDumpShaders(bool enable);
void setVblankDiv(u32 value);