diff options
author | 2016-04-03 10:48:11 +0200 | |
---|---|---|
committer | 2016-04-03 10:48:11 +0200 | |
commit | 88e84e7c52e7e9f6c84d9607de9517b897f709ca (patch) | |
tree | c95ccb7d4d5f8e125fc739b28d0d4d4ef1d16eaa | |
parent | 2bd758d393f11d8913b336794e0b25649f2cef2c (diff) |
ATTN: Ryan, please check. This is flag that causes BGFX looked worst then others (nw)
-rw-r--r-- | src/osd/modules/render/bgfx/target.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/render/bgfx/target.cpp b/src/osd/modules/render/bgfx/target.cpp index f39a4e3cfdb..75b073f89e4 100644 --- a/src/osd/modules/render/bgfx/target.cpp +++ b/src/osd/modules/render/bgfx/target.cpp @@ -31,7 +31,7 @@ bgfx_target::bgfx_target(std::string name, bgfx::TextureFormat::Enum format, uin m_width *= m_scale; m_height *= m_scale; uint32_t wrap_mode = BGFX_TEXTURE_U_CLAMP | BGFX_TEXTURE_V_CLAMP; - uint32_t filter_mode = filter ? (BGFX_TEXTURE_MIN_ANISOTROPIC | BGFX_TEXTURE_MAG_ANISOTROPIC) : (BGFX_TEXTURE_MIN_POINT | BGFX_TEXTURE_MAG_POINT | BGFX_TEXTURE_MIP_POINT); + uint32_t filter_mode = filter ? (BGFX_TEXTURE_MIN_ANISOTROPIC | BGFX_TEXTURE_MAG_ANISOTROPIC) : (BGFX_TEXTURE_MIN_POINT | BGFX_TEXTURE_MAG_ANISOTROPIC | BGFX_TEXTURE_MIP_POINT); m_textures = new bgfx::TextureHandle[m_page_count]; m_targets = new bgfx::FrameBufferHandle[m_page_count]; |