1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[dxvk/d3d9] Adjust/remove several loggers

This commit is contained in:
WinterSnowfall 2025-03-05 00:04:24 +02:00
parent 43afe90fcd
commit a20a700251
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View File

@ -1160,7 +1160,6 @@ namespace dxvk {
case (DXVK_TSS_TCI_CAMERASPACEPOSITION >> TCIOffset):
transformed = vtx;
if (!applyTransform) {
Logger::warn(str::format("!applyTransform flags: ", flags, " projidx: ", projIndex));
count = 3;
projIndex = 4;
}

View File

@ -481,7 +481,7 @@ namespace dxvk {
std::ifstream ifile = openCacheFileForRead();
if (!ifile) {
Logger::warn("DXVK: No state cache file found");
Logger::debug("DXVK: No state cache file found");
return true;
}
@ -504,7 +504,7 @@ namespace dxvk {
// Notify user about format conversion
if (curHeader.version != newHeader.version)
Logger::warn(str::format("DXVK: Updating state cache version to v", newHeader.version));
Logger::info(str::format("DXVK: Updating state cache version to v", newHeader.version));
// Read actual cache entries from the file.
// If we encounter invalid entries, we should
@ -880,7 +880,7 @@ namespace dxvk {
return file;
if (recreate) {
Logger::warn("DXVK: Creating new state cache file");
Logger::info("DXVK: Creating new state cache file");
// Write header with the current version number
DxvkStateCacheHeader header;