fix build; try to port our framebuffer changes (need fixes!)

Origin commit data
------------------
Commit: fa727d1bff
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-02-08 (Wed, 08 Feb 2017)

Origin message was:
------------------
- fix build; try to port our framebuffer changes (need fixes!)
This commit is contained in:
vanhofen
2017-02-08 09:45:53 +01:00
parent 0707fef642
commit b2210d8a75
9 changed files with 38 additions and 15 deletions

View File

@@ -75,9 +75,9 @@ CFbAccelGLFB::~CFbAccelGLFB()
}
}
void CFbAccelGLFB::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint32_t xoff, uint32_t yoff, uint32_t xp, uint32_t yp, bool transp)
void CFbAccelGLFB::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint32_t xoff, uint32_t yoff, uint32_t xp, uint32_t yp, bool transp, uint32_t unscaled_w, uint32_t unscaled_h) //NI
{
CFrameBuffer::blit2FB(fbbuff, width, height, xoff, yoff, xp, yp, transp);
CFrameBuffer::blit2FB(fbbuff, width, height, xoff, yoff, xp, yp, transp, unscaled_w, unscaled_h); //NI
blit();
}