From 0e4ca7f9a8c41b84e6fa4774ffb3ea685a7f278d Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 8 Dec 2013 00:48:23 -0800 Subject: [PATCH] Stop reporting logic ops. We support them on desktop and they're not really often used. --- GPU/GLES/GLES_GPU.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/GPU/GLES/GLES_GPU.cpp b/GPU/GLES/GLES_GPU.cpp index 6e5516a769..4f8de349e6 100644 --- a/GPU/GLES/GLES_GPU.cpp +++ b/GPU/GLES/GLES_GPU.cpp @@ -1407,16 +1407,6 @@ void GLES_GPU::ExecuteOpInternal(u32 op, u32 diff) { break; #ifndef USING_GLES2 - case GE_CMD_LOGICOPENABLE: - if (data != 0) - ERROR_LOG_REPORT_ONCE(logicOpEnable, G3D, "Unsupported logic op enabled: %x", data); - break; - - case GE_CMD_LOGICOP: - if (data != 0) - ERROR_LOG_REPORT_ONCE(logicOp, G3D, "Unsupported logic op: %06x", data); - break; - case GE_CMD_ANTIALIASENABLE: if (data != 0) WARN_LOG_REPORT_ONCE(antiAlias, G3D, "Unsupported antialias enabled: %06x", data);