diff options
| author | 2015-12-10 16:28:16 -0800 | |
|---|---|---|
| committer | 2015-12-10 16:29:01 -0800 | |
| commit | 5430ab220b231a96b71c3e030d0303d9ce008b05 (patch) | |
| tree | ed407801b7c29cdd79587b349ed22889c71bc17c /libs/hwui/GlopBuilder.cpp | |
| parent | c7964751d6745992065ec7c22d2a7feb51a0efe7 (diff) | |
Avoid unneeded rect params
Change-Id: I2d8dcf6b09fdc554a403ac74763bf856b5f5d9fa
Diffstat (limited to 'libs/hwui/GlopBuilder.cpp')
| -rw-r--r-- | libs/hwui/GlopBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/GlopBuilder.cpp b/libs/hwui/GlopBuilder.cpp index f3ac93b89893..2507ff377133 100644 --- a/libs/hwui/GlopBuilder.cpp +++ b/libs/hwui/GlopBuilder.cpp @@ -101,7 +101,7 @@ GlopBuilder& GlopBuilder::setMeshUnitQuad() { GlopBuilder& GlopBuilder::setMeshTexturedUnitQuad(const UvMapper* uvMapper) { if (uvMapper) { // can't use unit quad VBO, so build UV vertices manually - return setMeshTexturedUvQuad(uvMapper, Rect(0, 0, 1, 1)); + return setMeshTexturedUvQuad(uvMapper, Rect(1, 1)); } TRIGGER_STAGE(kMeshStage); |