From ddde2c69c3f729a7fedcaa4f41a8d7599dd8f037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20G=C3=BCnther?= Date: Wed, 20 Aug 2014 12:14:51 +0200 Subject: [PATCH] TV app: Use bilinear filtering. - 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. --- src/apps/tv/VideoView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/tv/VideoView.cpp b/src/apps/tv/VideoView.cpp index c8cb155b79..f127710ae7 100644 --- a/src/apps/tv/VideoView.cpp +++ b/src/apps/tv/VideoView.cpp @@ -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(); } }