diff options
| author | JosJuice <josjuice@gmail.com> | 2022-03-12 11:46:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-12 11:46:51 +0100 |
| commit | 9962b0bcaf8f897f6c26668e580fe59781b6ee00 (patch) | |
| tree | 108be8912dd2e54ca530b84fd0a6bc0bd689dbb6 /Source/Core/VideoBackends/Software/EfbInterface.cpp | |
| parent | 58c02e6b8585e0764643853f8e255b5013978469 (diff) | |
| parent | 0f3832dec6466c040ebbfde998f418d2a80e910c (diff) | |
Merge pull request #10504 from Pokechu22/info-logspam
Reduce logspam at info level
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/EfbInterface.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp index 70d5c66e80..1e5498e28a 100644 --- a/Source/Core/VideoBackends/Software/EfbInterface.cpp +++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp @@ -87,7 +87,7 @@ static void SetPixelColorOnly(u32 offset, u8* rgb) break; case PixelFormat::RGB565_Z16: { - INFO_LOG_FMT(VIDEO, "RGB565_Z16 is not supported correctly yet"); + // TODO: RGB565_Z16 is not supported correctly yet u32 src = *(u32*)rgb; u32* dst = (u32*)&efb[offset]; u32 val = *dst & 0xff000000; @@ -129,7 +129,7 @@ static void SetPixelAlphaColor(u32 offset, u8* color) break; case PixelFormat::RGB565_Z16: { - INFO_LOG_FMT(VIDEO, "RGB565_Z16 is not supported correctly yet"); + // TODO: RGB565_Z16 is not supported correctly yet u32 src = *(u32*)color; u32* dst = (u32*)&efb[offset]; u32 val = *dst & 0xff000000; @@ -161,7 +161,7 @@ static u32 GetPixelColor(u32 offset) Convert6To8((src >> 18) & 0x3f) << 24; // Red case PixelFormat::RGB565_Z16: - INFO_LOG_FMT(VIDEO, "RGB565_Z16 is not supported correctly yet"); + // TODO: RGB565_Z16 is not supported correctly yet return 0xff | ((src & 0x00ffffff) << 8); default: @@ -186,7 +186,7 @@ static void SetPixelDepth(u32 offset, u32 depth) break; case PixelFormat::RGB565_Z16: { - INFO_LOG_FMT(VIDEO, "RGB565_Z16 is not supported correctly yet"); + // TODO: RGB565_Z16 is not supported correctly yet u32* dst = (u32*)&efb[offset]; u32 val = *dst & 0xff000000; val |= depth & 0x00ffffff; @@ -214,7 +214,7 @@ static u32 GetPixelDepth(u32 offset) break; case PixelFormat::RGB565_Z16: { - INFO_LOG_FMT(VIDEO, "RGB565_Z16 is not supported correctly yet"); + // TODO: RGB565_Z16 is not supported correctly yet depth = (*(u32*)&efb[offset]) & 0x00ffffff; } break; |
