diff options
author | 2015-07-07 18:42:17 -0700 | |
---|---|---|
committer | 2015-07-07 18:42:42 -0700 | |
commit | e6a15ee3d0c78eb3f2551d73a7d238c3d8d2f075 (patch) | |
tree | fb4aa5c04487f1f2c13221937933288e2a3fff44 /libs/hwui/OpenGLRenderer.cpp | |
parent | 61d7acae0cafc265e94a35ad3ba1677f60346de9 (diff) |
Remove all usage of fmin and fmax
bug:22208220
Removes needless call, and upconversion to doubles in multiple places.
Change-Id: I1b949fa5f206446ac34de800154c0147d6bd8034
Diffstat (limited to 'libs/hwui/OpenGLRenderer.cpp')
-rw-r--r-- | libs/hwui/OpenGLRenderer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index 87ed84f510ca..ed2a4db9ea05 100644 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -1670,10 +1670,10 @@ void OpenGLRenderer::drawBitmap(const SkBitmap* bitmap, Rect src, Rect dst, cons if (!texture) return; const AutoTexture autoCleanup(texture); - Rect uv(fmax(0.0f, src.left / texture->width), - fmax(0.0f, src.top / texture->height), - fmin(1.0f, src.right / texture->width), - fmin(1.0f, src.bottom / texture->height)); + Rect uv(std::max(0.0f, src.left / texture->width), + std::max(0.0f, src.top / texture->height), + std::min(1.0f, src.right / texture->width), + std::min(1.0f, src.bottom / texture->height)); const int textureFillFlags = (bitmap->colorType() == kAlpha_8_SkColorType) ? TextureFillFlags::IsAlphaMaskTexture : TextureFillFlags::None; @@ -2450,7 +2450,7 @@ void OpenGLRenderer::drawTextDecorations(float underlineWidth, float x, float y, if (CC_LIKELY(underlineWidth > 0.0f)) { const float textSize = paintCopy.getTextSize(); - const float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f); + const float strokeWidth = std::max(textSize * kStdUnderline_Thickness, 1.0f); const float left = x; float top = 0.0f; |