From bd77ec46537f8573cee707155ed1219a29f48536 Mon Sep 17 00:00:00 2001 From: assiduous Date: Sat, 1 Feb 2020 17:59:54 -0800 Subject: Minor update in GL backend --- Graphics/GraphicsEngineOpenGL/src/GLContextState.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngineOpenGL') diff --git a/Graphics/GraphicsEngineOpenGL/src/GLContextState.cpp b/Graphics/GraphicsEngineOpenGL/src/GLContextState.cpp index d4af6807..ff0c3803 100644 --- a/Graphics/GraphicsEngineOpenGL/src/GLContextState.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/GLContextState.cpp @@ -660,7 +660,8 @@ void GLContextState::SetBlendFactors(const float* BlendFactors) void GLContextState::SetBlendState(const BlendStateDesc& BSDsc, Uint32 SampleMask) { - VERIFY(SampleMask == 0xFFFFFFFF, "Sample mask is not currently implemented in GL"); + if (SampleMask != 0xFFFFFFFF) + LOG_ERROR_MESSAGE("Sample mask is not currently implemented in GL backend"); bool bEnableBlend = false; if (BSDsc.IndependentBlendEnable) -- cgit v1.2.3