mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 06:19:02 +02:00
Missed a few.
This commit is contained in:
parent
dacc2bdb09
commit
ef7098b39a
2 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@ public:
|
||||||
|
|
||||||
const rgbColor& getColor() const { return _color; }
|
const rgbColor& getColor() const { return _color; }
|
||||||
xColor getXColor() const { xColor color = { _color[RED_INDEX], _color[GREEN_INDEX], _color[BLUE_INDEX] }; return color; }
|
xColor getXColor() const { xColor color = { _color[RED_INDEX], _color[GREEN_INDEX], _color[BLUE_INDEX] }; return color; }
|
||||||
glm::vec3 getColorRGB() const { return ColorUtils::toLinearVec3(toGlm(getXColor())); }
|
glm::vec3 getColorRGB() const { return ColorUtils::tosRGBVec3(toGlm(getXColor())); }
|
||||||
|
|
||||||
static const xColor DEFAULT_COLOR;
|
static const xColor DEFAULT_COLOR;
|
||||||
void setColor(const rgbColor& value) { memcpy(_color, value, sizeof(_color)); }
|
void setColor(const rgbColor& value) { memcpy(_color, value, sizeof(_color)); }
|
||||||
|
@ -62,17 +62,17 @@ public:
|
||||||
bool _isColorStartInitialized = false;
|
bool _isColorStartInitialized = false;
|
||||||
void setColorStart(const xColor& colorStart) { _colorStart = colorStart; _isColorStartInitialized = true; }
|
void setColorStart(const xColor& colorStart) { _colorStart = colorStart; _isColorStartInitialized = true; }
|
||||||
xColor getColorStart() const { return _isColorStartInitialized ? _colorStart : getXColor(); }
|
xColor getColorStart() const { return _isColorStartInitialized ? _colorStart : getXColor(); }
|
||||||
glm::vec3 getColorStartRGB() const { return _isColorStartInitialized ? ColorUtils::toLinearVec3(toGlm(_colorStart)) : getColorRGB(); }
|
glm::vec3 getColorStartRGB() const { return _isColorStartInitialized ? ColorUtils::tosRGBVec3(toGlm(_colorStart)) : getColorRGB(); }
|
||||||
|
|
||||||
bool _isColorFinishInitialized = false;
|
bool _isColorFinishInitialized = false;
|
||||||
void setColorFinish(const xColor& colorFinish) { _colorFinish = colorFinish; _isColorFinishInitialized = true; }
|
void setColorFinish(const xColor& colorFinish) { _colorFinish = colorFinish; _isColorFinishInitialized = true; }
|
||||||
xColor getColorFinish() const { return _isColorFinishInitialized ? _colorFinish : getXColor(); }
|
xColor getColorFinish() const { return _isColorFinishInitialized ? _colorFinish : getXColor(); }
|
||||||
glm::vec3 getColorFinishRGB() const { return _isColorStartInitialized ? ColorUtils::toLinearVec3(toGlm(_colorFinish)) : getColorRGB(); }
|
glm::vec3 getColorFinishRGB() const { return _isColorStartInitialized ? ColorUtils::tosRGBVec3(toGlm(_colorFinish)) : getColorRGB(); }
|
||||||
|
|
||||||
static const xColor DEFAULT_COLOR_SPREAD;
|
static const xColor DEFAULT_COLOR_SPREAD;
|
||||||
void setColorSpread(const xColor& colorSpread) { _colorSpread = colorSpread; }
|
void setColorSpread(const xColor& colorSpread) { _colorSpread = colorSpread; }
|
||||||
xColor getColorSpread() const { return _colorSpread; }
|
xColor getColorSpread() const { return _colorSpread; }
|
||||||
glm::vec3 getColorSpreadRGB() const { return ColorUtils::toLinearVec3(toGlm(_colorSpread)); }
|
glm::vec3 getColorSpreadRGB() const { return ColorUtils::tosRGBVec3(toGlm(_colorSpread)); }
|
||||||
|
|
||||||
static const float MAXIMUM_ALPHA;
|
static const float MAXIMUM_ALPHA;
|
||||||
static const float MINIMUM_ALPHA;
|
static const float MINIMUM_ALPHA;
|
||||||
|
|
|
@ -363,7 +363,7 @@ void Font::drawString(gpu::Batch& batch, float x, float y, const QString& str, c
|
||||||
batch._glUniform1i(_outlineLoc, (effectType == OUTLINE_EFFECT));
|
batch._glUniform1i(_outlineLoc, (effectType == OUTLINE_EFFECT));
|
||||||
|
|
||||||
// need the gamma corrected color here
|
// need the gamma corrected color here
|
||||||
glm::vec4 lrgba = glm::vec4(ColorUtils::toLinearVec3(glm::vec3(*color)), color->a);
|
glm::vec4 lrgba = glm::vec4(ColorUtils::tosRGBVec3(glm::vec3(*color)), color->a);
|
||||||
batch._glUniform4fv(_colorLoc, 1, (const float*)&lrgba);
|
batch._glUniform4fv(_colorLoc, 1, (const float*)&lrgba);
|
||||||
|
|
||||||
batch.setInputFormat(_format);
|
batch.setInputFormat(_format);
|
||||||
|
|
Loading…
Reference in a new issue