summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbInterface.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2017-08-05 19:20:19 +0200
committerdegasus <wickmarkus@web.de>2017-08-05 19:20:19 +0200
commitcc4b3b180bd5aa8386498a26bd60bce5161d9e84 (patch)
treed4bb5e885d544edafd77400e1e57ae3d24d61fa1 /Source/Core/VideoBackends/Software/EfbInterface.cpp
parent710f333ea8495bd73b033839863558d060987466 (diff)
VideoSW: Drop log level of missing anti aliasing support.
We don't want to emit such a high priority warning here, else fifoci will die.
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/EfbInterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp
index 31248455c5..9f6af90c0d 100644
--- a/Source/Core/VideoBackends/Software/EfbInterface.cpp
+++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp
@@ -82,7 +82,7 @@ static void SetPixelColorOnly(u32 offset, u8* rgb)
break;
case PEControl::RGB565_Z16:
{
- WARN_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
+ INFO_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
u32 src = *(u32*)rgb;
u32* dst = (u32*)&efb[offset];
u32 val = *dst & 0xff000000;
@@ -123,7 +123,7 @@ static void SetPixelAlphaColor(u32 offset, u8* color)
break;
case PEControl::RGB565_Z16:
{
- WARN_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
+ INFO_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
u32 src = *(u32*)color;
u32* dst = (u32*)&efb[offset];
u32 val = *dst & 0xff000000;
@@ -179,7 +179,7 @@ static void SetPixelDepth(u32 offset, u32 depth)
break;
case PEControl::RGB565_Z16:
{
- WARN_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
+ INFO_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
u32* dst = (u32*)&efb[offset];
u32 val = *dst & 0xff000000;
val |= depth & 0x00ffffff;
@@ -206,7 +206,7 @@ static u32 GetPixelDepth(u32 offset)
break;
case PEControl::RGB565_Z16:
{
- WARN_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
+ INFO_LOG(VIDEO, "RGB565_Z16 is not supported correctly yet");
depth = (*(u32*)&efb[offset]) & 0x00ffffff;
}
break;