diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-03-16 19:08:09 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-03-16 19:08:09 +0000 |
| commit | 331b6caf7e64631e558cf7192c1bee0e96659bea (patch) | |
| tree | e3b23619440330082cbaa83b41eb662db41210c1 /Graphics/GraphicsEngineOpenGL | |
| parent | Fixed linux/mac build error (diff) | |
| download | DiligentCore-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.cpp | 4 |
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; } |
