GL2PaintEngine: Prevent fillInPendingGlyphs from breaking gradients

The glyph cache internally uses the image texture unit when blitting,
but doesn't always activate the unit before binding its texture,
resulting in sometimes binding the glyph cache texture to the
wrong unit.

The image texture unit is also the same as the brush texture unit,
so any time we fill in pending glyphs we need to re-bind the brush
texture, otherwise drawing text with eg. gradients will fail after
the new glyphs have been filled.

The new hasPendingGlyphs() member function of the glyph cache
is an optimization so that we don't need to activate and rebind
unless there are glyphs that need to be filled.

Change-Id: Iac74130145d2d6d7bf95206b5e8a2fc760743cb5
Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
This commit is contained in:
Tor Arne Vestbø 2014-12-09 16:50:05 +01:00 committed by Tor Arne Vestbø
parent e79cdd0e6d
commit e9222e199d
3 changed files with 21 additions and 2 deletions

View File

@ -1639,7 +1639,25 @@ void QOpenGL2PaintEngineExPrivate::drawCachedGlyphs(QFontEngine::GlyphFormat gly
cache->populate(fe, staticTextItem->numGlyphs,
staticTextItem->glyphs, staticTextItem->glyphPositions);
}
cache->fillInPendingGlyphs();
if (cache->hasPendingGlyphs()) {
// Filling in the glyphs binds and sets parameters, so we need to
// ensure that the glyph cache doesn't mess with whatever unit
// is currently active. Note that the glyph cache internally
// uses the image texture unit for blitting to the cache, while
// we switch between image and mask units when drawing.
static const GLenum glypchCacheTextureUnit = QT_IMAGE_TEXTURE_UNIT;
funcs.glActiveTexture(GL_TEXTURE0 + glypchCacheTextureUnit);
cache->fillInPendingGlyphs();
// We assume the cache can be trusted on which texture was bound
lastTextureUsed = cache->texture();
// But since the brush and image texture units are possibly shared
// we may have to re-bind brush textures after filling in the cache.
brushTextureDirty = (QT_BRUSH_TEXTURE_UNIT == glypchCacheTextureUnit);
}
}
if (cache->width() == 0 || cache->height() == 0)

View File

@ -222,7 +222,7 @@ bool QTextureGlyphCache::populate(QFontEngine *fontEngine, int numGlyphs, const
void QTextureGlyphCache::fillInPendingGlyphs()
{
if (m_pendingGlyphs.isEmpty())
if (!hasPendingGlyphs())
return;
int requiredHeight = m_h;

View File

@ -104,6 +104,7 @@ public:
bool populate(QFontEngine *fontEngine, int numGlyphs, const glyph_t *glyphs,
const QFixedPoint *positions);
bool hasPendingGlyphs() const { return !m_pendingGlyphs.isEmpty(); };
void fillInPendingGlyphs();
virtual void createTextureData(int width, int height) = 0;