diff options
| author | 2018-08-06 19:19:55 -0700 | |
|---|---|---|
| committer | 2018-08-06 19:20:02 -0700 | |
| commit | 02857a72198613a0583cdf6863edb2df59beee04 (patch) | |
| tree | 076fcfdb52deea3aada1c0dd8b31decbd87c80b0 /libs/hwui/Program.cpp | |
| parent | 10c593cf7f30ddea32889361c81ef06eabaeb6b3 (diff) | |
| parent | 7e1e76a6dc088458b159c4c89c54b78d32d7d310 (diff) | |
Merge Android Pie into master
Bug: 112104996
Change-Id: Id91836f22f2c9842975ac5b55f0f18b89db9b2f5
Diffstat (limited to 'libs/hwui/Program.cpp')
| -rw-r--r-- | libs/hwui/Program.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp index e43b80d440e7..052798b9cea9 100644 --- a/libs/hwui/Program.cpp +++ b/libs/hwui/Program.cpp @@ -151,7 +151,7 @@ GLuint Program::buildShader(const char* source, GLenum type) { } void Program::set(const mat4& projectionMatrix, const mat4& modelViewMatrix, - const mat4& transformMatrix, bool offset) { + const mat4& transformMatrix, bool offset) { if (projectionMatrix != mProjection || offset != mOffset) { if (CC_LIKELY(!offset)) { glUniformMatrix4fv(projection, 1, GL_FALSE, &projectionMatrix.data[0]); @@ -195,5 +195,5 @@ void Program::remove() { mUse = false; } -}; // namespace uirenderer -}; // namespace android +}; // namespace uirenderer +}; // namespace android |