mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-03 03:05:18 +02:00
Merge pull request #16575 from unknownbrackets/logging
Cleanup some logspam
This commit is contained in:
@@ -107,7 +107,7 @@ bool VKRGraphicsPipeline::Create(VulkanContext *vulkan, VkRenderPass compatibleR
|
||||
double taken_ms = (time_now_d() - start) * 1000.0;
|
||||
|
||||
if (taken_ms < 0.1) {
|
||||
INFO_LOG(G3D, "Pipeline creation time: %0.2f ms (fast) rpType: %08x sampleBits: %d\n(%s)", taken_ms, (u32)rpType, (u32)sampleCount, tag_.c_str());
|
||||
DEBUG_LOG(G3D, "Pipeline creation time: %0.2f ms (fast) rpType: %08x sampleBits: %d\n(%s)", taken_ms, (u32)rpType, (u32)sampleCount, tag_.c_str());
|
||||
} else {
|
||||
INFO_LOG(G3D, "Pipeline creation time: %0.2f ms rpType: %08x sampleBits: %d\n(%s)", taken_ms, (u32)rpType, (u32)sampleCount, tag_.c_str());
|
||||
}
|
||||
|
||||
@@ -666,10 +666,6 @@ static int DefaultFastForwardMode() {
|
||||
#endif
|
||||
}
|
||||
|
||||
static int DefaultZoomType() {
|
||||
return (int)SmallDisplayZoom::AUTO;
|
||||
}
|
||||
|
||||
static int DefaultAndroidHwScale() {
|
||||
#ifdef __ANDROID__
|
||||
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 19 || System_GetPropertyInt(SYSPROP_DEVICE_TYPE) == DEVICE_TYPE_TV) {
|
||||
|
||||
@@ -105,13 +105,6 @@ enum IOTimingMethods {
|
||||
IOTIMING_REALISTIC = 2,
|
||||
};
|
||||
|
||||
enum class SmallDisplayZoom {
|
||||
STRETCH = 0,
|
||||
PARTIAL_STRETCH = 1,
|
||||
AUTO = 2,
|
||||
MANUAL = 3,
|
||||
};
|
||||
|
||||
enum class AutoLoadSaveState {
|
||||
OFF = 0,
|
||||
OLDEST = 1,
|
||||
|
||||
@@ -121,7 +121,7 @@ void GPU_Vulkan::CancelReady() {
|
||||
|
||||
void GPU_Vulkan::LoadCache(const Path &filename) {
|
||||
if (!g_Config.bShaderCache) {
|
||||
WARN_LOG(G3D, "!!!! Shader cache disabled. Not loading.");
|
||||
WARN_LOG(G3D, "Shader cache disabled. Not loading.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user