start implementing hardware acceleration for armbox

you have to compile neutrino with "--enable-reschange" to use FullHD-OSD


Origin commit data
------------------
Branch: ni/coolstream
Commit: 9cc0e702d8
Author: TangoCash <eric@loxat.de>
Date: 2017-10-05 (Thu, 05 Oct 2017)



------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2017-10-05 12:52:53 +02:00
committed by vanhofen
parent a84d642cff
commit c04649c451
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