fb_accel: move hd2 specific parts from fader to fb_accel

This commit is contained in:
Stefan Seyfried
2017-02-22 21:23:11 +01:00
parent eb6d73af7a
commit 9287d66472
2 changed files with 4 additions and 17 deletions

View File

@@ -241,7 +241,10 @@ fb_pixel_t * CFbAccelCSHD2::getBackBufferPointer() const
void CFbAccelCSHD2::setBlendMode(uint8_t mode)
{
if (ioctl(fd, FBIO_SETBLENDMODE, mode))
uint8_t arg = CNXTFB_BLEND_MODE_PER_PIXEL;
if (mode == 2)
arg = CNXTFB_BLEND_MODE_UNIFORM_ALPHA;
if (ioctl(fd, FBIO_SETBLENDMODE, arg))
printf("FBIO_SETBLENDMODE failed.\n");
}