mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
Merge branch 'master' into pu/fb-setmode
Fix merge conflict
This commit is contained in:
@@ -48,7 +48,6 @@
|
||||
#include <gui/color.h>
|
||||
#include <gui/pictureviewer.h>
|
||||
#include <system/debug.h>
|
||||
#include <system/helpers.h>
|
||||
#include <global.h>
|
||||
#include <video.h>
|
||||
#include <cs_api.h>
|
||||
@@ -527,7 +526,7 @@ fb_pixel_t* CFrameBuffer::paintBoxRel(const int x, const int y, const int dx, co
|
||||
|
||||
#ifdef BOXMODEL_CS_HD2
|
||||
if (_dx%4 != 0) {
|
||||
w_align = GetWidth4FB_HW_ACC(x, _dx, true);
|
||||
w_align = getWidth4FB_HW_ACC(x, _dx, true);
|
||||
if (w_align < _dx)
|
||||
_dx = w_align;
|
||||
offs_align = w_align - _dx;
|
||||
@@ -1783,3 +1782,8 @@ bool CFrameBuffer::_checkFbArea(int _x, int _y, int _dx, int _dy, bool prev)
|
||||
void CFrameBuffer::mark(int , int , int , int )
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t CFrameBuffer::getWidth4FB_HW_ACC(const uint32_t /*x*/, const uint32_t w, const bool /*max*/)
|
||||
{
|
||||
return w;
|
||||
}
|
||||
|
Reference in New Issue
Block a user