start implementing hardware acceleration for armbox

you have to compile neutrino with "--enable-reschange" to use FullHD-OSD
This commit is contained in:
TangoCash
2017-10-05 12:52:53 +02:00
committed by Thilo Graf
parent 6fe5d269af
commit 2d11e017a0
5 changed files with 285 additions and 0 deletions

View File

@@ -209,4 +209,19 @@ class CFbAccelTD
void setBlendLevel(int);
};
class CFbAccelARM
: public CFbAccel
{
private:
fb_pixel_t *backbuffer;
public:
CFbAccelARM();
~CFbAccelARM();
fb_pixel_t * getBackBufferPointer() const;
int setMode(unsigned int xRes, unsigned int yRes, unsigned int bpp);
int scale2Res(int size);
bool fullHdAvailable();
void setOsdResolutions();
};
#endif