diff options
| author | 2014-01-03 21:35:30 +0000 | |
|---|---|---|
| committer | 2014-01-03 21:35:31 +0000 | |
| commit | 8523706236b0b2536ed4359d92ec6ccdca060d78 (patch) | |
| tree | 81c4d6f113e59c4e15a300fd46dd81fe840b7c43 /libs/hwui/Program.cpp | |
| parent | 83fbad4c3f2d39341152d73540ff022a6f817385 (diff) | |
| parent | 564acf7c9bff822f608cda0d5df0a64a9f9aaefd (diff) | |
Merge "Fix Clang warnings/errors"
Diffstat (limited to 'libs/hwui/Program.cpp')
| -rw-r--r-- | libs/hwui/Program.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp index 7814a01ad929..a679552aa757 100644 --- a/libs/hwui/Program.cpp +++ b/libs/hwui/Program.cpp @@ -173,7 +173,7 @@ void Program::set(const mat4& projectionMatrix, const mat4& modelViewMatrix, // up and to the left. // This offset value is based on an assumption that some hardware may use as // little as 12.4 precision, so we offset by slightly more than 1/16. - p.translate(Vertex::gGeometryFudgeFactor, Vertex::gGeometryFudgeFactor); + p.translate(Vertex::GeometryFudgeFactor(), Vertex::GeometryFudgeFactor()); glUniformMatrix4fv(projection, 1, GL_FALSE, &p.data[0]); } mProjection = projectionMatrix; |