Skip to content

Commit

Permalink
OpenGLVideo: Fix texture filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Jan 19, 2019
1 parent b07e39a commit 29d14f0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmythtv/openglvideo.cpp
Expand Up @@ -283,13 +283,15 @@ void OpenGLVideo::CheckResize(bool deinterlacing)
{
RemoveFilter(kGLFilterResize);
AddFilter(kGLFilterBicubic);
SetFiltering();
return;
}

if ((resize_up && (defaultUpsize == kGLFilterResize)) || resize_down)
{
RemoveFilter(kGLFilterBicubic);
AddFilter(kGLFilterResize);
SetFiltering();
return;
}

Expand Down

0 comments on commit 29d14f0

Please sign in to comment.