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.
This commit is contained in:
Colin Günther
2014-08-20 12:23:03 +02:00
parent 740ede8c95
commit ddde2c69c3
+1 -1
View File
@@ -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();
}
}