From 960ae15cf37fe31790e255521ee2045312e82d36 Mon Sep 17 00:00:00 2001 From: Alex Sakhartchouk Date: Tue, 12 Oct 2010 14:15:17 -0700 Subject: Fixing font bug, initialization was done in the wrong order. Change-Id: Icc7b932f25be1ca6e5423bba6a5cfc965f6c3341 --- libs/rs/rsFont.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/rs/rsFont.cpp b/libs/rs/rsFont.cpp index a95100539af1..8756f82341f7 100644 --- a/libs/rs/rsFont.cpp +++ b/libs/rs/rsFont.cpp @@ -339,7 +339,6 @@ FontState::FontState() mCurrentQuadIndex = 0; mRSC = NULL; mLibrary = NULL; - setFontColor(0.1f, 0.1f, 0.1f, 1.0f); // Get the renderer properties char property[PROPERTY_VALUE_MAX]; @@ -378,6 +377,8 @@ FontState::FontState() // Compute the gamma tables mBlackGamma = gamma; mWhiteGamma = 1.0f / gamma; + + setFontColor(0.1f, 0.1f, 0.1f, 1.0f); } FontState::~FontState() @@ -831,6 +832,7 @@ void FontState::setFontColor(float r, float g, float b, float a) { } else if (luminance >= mWhiteThreshold) { mConstants.mGamma = mWhiteGamma; } + mConstantsDirty = true; } -- cgit v1.2.3-59-g8ed1b