forked from organicmaps/organicmaps
initializing width and height with invalid values.
This commit is contained in:
parent
283aa682b3
commit
3b749093f1
1 changed files with 3 additions and 1 deletions
|
@ -172,7 +172,9 @@ namespace yg
|
|||
|
||||
Renderer::Renderer(Params const & params)
|
||||
: m_isDebugging(params.m_isDebugging),
|
||||
m_isRendering(false)
|
||||
m_isRendering(false),
|
||||
m_width(0),
|
||||
m_height(0)
|
||||
{
|
||||
m_frameBuffer = params.m_frameBuffer;
|
||||
m_resourceManager = params.m_resourceManager;
|
||||
|
|
Loading…
Add table
Reference in a new issue