summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-03-16 19:08:09 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-03-16 19:08:09 +0000
commit331b6caf7e64631e558cf7192c1bee0e96659bea (patch)
treee3b23619440330082cbaa83b41eb662db41210c1 /Graphics/GraphicsEngineOpenGL
parentFixed linux/mac build error (diff)
downloadDiligentCore-331b6caf7e64631e558cf7192c1bee0e96659bea.tar.gz
DiligentCore-331b6caf7e64631e558cf7192c1bee0e96659bea.zip
Moved filtering functions to new FilterintTools.hpp. Added FilterTexture2DBilinear function.
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
-rw-r--r--Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp b/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp
index 754902d0..978a810f 100644
--- a/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp
+++ b/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp
@@ -126,8 +126,8 @@ GLContext::GLContext(const EngineGLCreateInfo& InitAttribs, DeviceCaps& deviceCa
}
else
{
- LOG_WARNING_MESSAGE("Unsupported color buffer format ", GetTextureFormatAttribs(ColorFmt).Name, ". "
- "OpenGL only supports 32-bit UNORM color buffer formats.");
+ LOG_WARNING_MESSAGE("Unsupported color buffer format ", GetTextureFormatAttribs(ColorFmt).Name,
+ ". OpenGL only supports 32-bit UNORM color buffer formats.");
pfd.cColorBits = 32;
}