fb_accel: add backend for GL framebuffer

Origin commit data
------------------
Branch: ni/coolstream
Commit: 05d4017b36
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2017-02-06 (Mon, 06 Feb 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2017-02-06 00:15:37 +01:00
parent a5e26c170e
commit 23da2a34ef
4 changed files with 174 additions and 0 deletions

View File

@@ -110,4 +110,25 @@ class CFbAccelCS
void setBlendLevel(int);
};
class CFbAccelGLFB
: public OpenThreads::Thread, public CFbAccel
{
private:
void run(void);
void blit(void);
void _blit(void);
bool blit_thread;
bool blit_pending;
OpenThreads::Condition blit_cond;
OpenThreads::Mutex blit_mutex;
fb_pixel_t *backbuffer;
public:
CFbAccelGLFB();
~CFbAccelGLFB();
void init(const char * const);
int setMode(unsigned int xRes, unsigned int yRes, unsigned int bpp);
void blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint32_t xoff, uint32_t yoff, uint32_t xp, uint32_t yp, bool transp);
fb_pixel_t * getBackBufferPointer() const;
};
#endif