Skip to content

Commit

Permalink
TV app: Use bilinear filtering.
Browse files Browse the repository at this point in the history
- This makes the video output looks more visual appealing. Without bilinear
  filtering you would see aliasing artifacts all over the place. Now it looks
  more harmonic.
  • Loading branch information
Colin Günther committed Aug 20, 2014
1 parent 740ede8 commit ddde2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/tv/VideoView.cpp
Expand Up @@ -208,7 +208,7 @@ VideoView::Draw(BRect updateRect)
fVideoNode->LockBitmap();
BBitmap *bmp = fVideoNode->Bitmap();
if (bmp)
DrawBitmap(bmp, Bounds());
DrawBitmap(bmp, bmp->Bounds(), Bounds(), B_FILTER_BITMAP_BILINEAR);
fVideoNode->UnlockBitmap();
}
}
Expand Down

0 comments on commit ddde2c6

Please sign in to comment.