fbaccel: factor out private stuff into own header

This commit is contained in:
Stefan Seyfried
2013-11-09 13:09:39 +01:00
parent 4599172b0e
commit 5a462721cb
4 changed files with 90 additions and 46 deletions

View File

@@ -26,6 +26,7 @@
#endif
#include <driver/framebuffer_ng.h>
#include <driver/fbaccel.h>
#include <stdio.h>
#include <fcntl.h>
@@ -1341,3 +1342,9 @@ bool CFrameBuffer::_checkFbArea(int _x, int _y, int _dx, int _dy, bool prev)
return true;
}
/* TODO: can we get rid of that? */
void CFrameBuffer::mark(int x, int y, int dx, int dy)
{
accel->mark(x, y, dx, dy);
};