From 1b1bc4c067016e422456a0f6bfe1675e44f3ed94 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Fri, 10 Aug 2012 15:03:28 +0200 Subject: [PATCH] sf::Text no longer forces the BlendAlpha blending mode --- src/SFML/Graphics/Text.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SFML/Graphics/Text.cpp b/src/SFML/Graphics/Text.cpp index b46f18a3..655e53c7 100644 --- a/src/SFML/Graphics/Text.cpp +++ b/src/SFML/Graphics/Text.cpp @@ -216,7 +216,6 @@ void Text::draw(RenderTarget& target, RenderStates states) const if (m_font) { states.transform *= getTransform(); - states.blendMode = BlendAlpha; // alpha blending is mandatory for proper text rendering states.texture = &m_font->getTexture(m_characterSize); target.draw(m_vertices, states); }