diff options
| author | 2015-07-08 01:53:56 +0000 | |
|---|---|---|
| committer | 2015-07-08 01:53:57 +0000 | |
| commit | 127b478ac61eed99894998b38bca82b79b8e56b1 (patch) | |
| tree | 9c8d52d07e2692ba3bb6ab1fb814ec66cbb3fcff /libs/hwui/TessellationCache.cpp | |
| parent | 5544cb421c38d2f0a966a69d112ca7685aa716f7 (diff) | |
| parent | e6a15ee3d0c78eb3f2551d73a7d238c3d8d2f075 (diff) | |
Merge "Remove all usage of fmin and fmax" into mnc-dev
Diffstat (limited to 'libs/hwui/TessellationCache.cpp')
| -rw-r--r-- | libs/hwui/TessellationCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/TessellationCache.cpp b/libs/hwui/TessellationCache.cpp index 9df1f0d1a719..17cb3a7fd6fd 100644 --- a/libs/hwui/TessellationCache.cpp +++ b/libs/hwui/TessellationCache.cpp @@ -244,8 +244,8 @@ static void tessellateShadows( const Vertex& point2d = casterVertices2d[i]; casterPolygon[i] = (Vector3){point2d.x, point2d.y, 0}; mapPointFakeZ(casterPolygon[i], casterTransformXY, casterTransformZ); - minZ = fmin(minZ, casterPolygon[i].z); - maxZ = fmax(maxZ, casterPolygon[i].z); + minZ = std::min(minZ, casterPolygon[i].z); + maxZ = std::max(maxZ, casterPolygon[i].z); } // map the centroid of the caster into 3d |