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:
parent
740ede8c95
commit
ddde2c69c3
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user