fix rendertarget warning on xrender
accidental GL call in non GL compositing
This commit is contained in:
parent
57485cfefc
commit
bac8dc095f
1 changed files with 2 additions and 2 deletions
|
@ -255,7 +255,7 @@ void MagnifierEffect::zoomIn()
|
|||
polling = true;
|
||||
effects->startMousePolling();
|
||||
}
|
||||
if (!m_texture) {
|
||||
if (effects->isOpenGLCompositing() && !m_texture) {
|
||||
m_texture = new GLTexture(magnifier_size.width(), magnifier_size.height());
|
||||
m_texture->setYInverted(false);
|
||||
m_fbo = new GLRenderTarget(*m_texture);
|
||||
|
@ -293,7 +293,7 @@ void MagnifierEffect::toggle()
|
|||
polling = true;
|
||||
effects->startMousePolling();
|
||||
}
|
||||
if (!m_texture) {
|
||||
if (effects->isOpenGLCompositing() && !m_texture) {
|
||||
m_texture = new GLTexture(magnifier_size.width(), magnifier_size.height());
|
||||
m_texture->setYInverted(false);
|
||||
m_fbo = new GLRenderTarget(*m_texture);
|
||||
|
|
Loading…
Reference in a new issue