dont use m_renderer if null
This commit is contained in:
parent
1579a1f1e1
commit
6f52e6e6c7
@ -121,9 +121,11 @@ TBBitmapGL::TBBitmapGL(TBRendererGL *renderer)
|
||||
TBBitmapGL::~TBBitmapGL()
|
||||
{
|
||||
// Must flush and unbind before we delete the texture
|
||||
if (m_renderer) m_renderer->FlushBitmap(this);
|
||||
if (m_texture == m_renderer->m_current_texture)
|
||||
m_renderer->BindBitmap(nullptr);
|
||||
if (m_renderer) {
|
||||
m_renderer->FlushBitmap(this);
|
||||
if (m_texture == m_renderer->m_current_texture)
|
||||
m_renderer->BindBitmap(nullptr);
|
||||
}
|
||||
|
||||
GLCALL(glDeleteTextures(1, &m_texture));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user