Commit c1164f87 authored by Andy Shaw's avatar Andy Shaw Committed by Yoann Lopes
Browse files

Only update the texture if the m_glResources are valid


Change-Id: Ifa0c768e2f0299d31d3d52db975c896bdb2aab5e
Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
Showing with 1 addition and 1 deletion
...@@ -255,7 +255,7 @@ QVariant IMFSampleVideoBuffer::handle() const ...@@ -255,7 +255,7 @@ QVariant IMFSampleVideoBuffer::handle() const
if (handleType() != GLTextureHandle) if (handleType() != GLTextureHandle)
return handle; return handle;
if (m_textureUpdated || m_engine->updateTexture(m_surface)) { if (m_engine->m_glResources && (m_textureUpdated || m_engine->updateTexture(m_surface))) {
m_textureUpdated = true; m_textureUpdated = true;
handle = QVariant::fromValue<unsigned int>(m_engine->m_glResources->glTexture); handle = QVariant::fromValue<unsigned int>(m_engine->m_glResources->glTexture);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment