forked from organicmaps/organicmaps
default clear color is now (187, 187, 187, 255). color was chosen to be equal to (11, 11, 11, 15) in 4bpp format.
This commit is contained in:
parent
010b3038ab
commit
023cd887ce
4 changed files with 5 additions and 13 deletions
|
@ -103,7 +103,7 @@ public:
|
|||
void beginFrame();
|
||||
void endFrame();
|
||||
|
||||
void clear(yg::Color const & c = yg::Color(192, 192, 192, 255), bool clearRT = true, float depth = 1.0f, bool clearDepth = true);
|
||||
void clear(yg::Color const & c = yg::Color(187, 187, 187, 255), bool clearRT = true, float depth = 1.0f, bool clearDepth = true);
|
||||
|
||||
void onSize(int w, int h);
|
||||
|
||||
|
|
|
@ -409,7 +409,7 @@ public:
|
|||
m_currentBenchmark++;
|
||||
|
||||
e->drawer()->screen()->beginFrame();
|
||||
e->drawer()->screen()->clear(/*yg::Color(255, 0, 0, 255)*/);
|
||||
e->drawer()->screen()->clear();
|
||||
|
||||
m2::PointD ptShift = m_renderQueue.renderState().coordSystemShift(false);
|
||||
|
||||
|
@ -423,15 +423,7 @@ public:
|
|||
|
||||
pDrawer->screen()->blit(m_renderQueue.renderState().m_actualTarget,
|
||||
m_renderQueue.renderState().m_actualScreen,
|
||||
currentScreen,
|
||||
yg::Color(0, 255, 0, 255),
|
||||
m2::RectI(0, 0,
|
||||
m_renderQueue.renderState().m_actualTarget->width(),
|
||||
m_renderQueue.renderState().m_actualTarget->height()),
|
||||
m2::RectU(0, 0,
|
||||
m_renderQueue.renderState().m_actualTarget->width(),
|
||||
m_renderQueue.renderState().m_actualTarget->height()));
|
||||
|
||||
currentScreen);
|
||||
|
||||
m_informationDisplay.doDraw(pDrawer);
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ namespace yg
|
|||
void enableClipRect(bool flag);
|
||||
void setClipRect(m2::RectI const & rect);
|
||||
|
||||
void clear(yg::Color const & c = yg::Color(192, 192, 192, 255), bool clearRT = true, float depth = 1.0, bool clearDepth = true);
|
||||
void clear(yg::Color const & c = yg::Color(187, 187, 187, 255), bool clearRT = true, float depth = 1.0, bool clearDepth = true);
|
||||
|
||||
/// @}
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ namespace yg
|
|||
/// @warning this function respects the clipping rect set and enabled(!)
|
||||
/// by the setClipRect/enableClipRect. Whether the clipping is
|
||||
/// not enabled - the entire currently bound render surface is used.
|
||||
void clear(yg::Color const & c = yg::Color(192, 192, 192, 255), bool clearRT = true, float depth = 1.0, bool clearDepth = true);
|
||||
void clear(yg::Color const & c = yg::Color(187, 187, 187, 255), bool clearRT = true, float depth = 1.0, bool clearDepth = true);
|
||||
|
||||
void onSize(unsigned width, unsigned height);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue