summaryrefslogtreecommitdiff
path: root/libs/hwui/Program.cpp
diff options
context:
space:
mode:
author Chris Craik <ccraik@google.com> 2015-02-03 00:00:57 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2015-02-03 00:00:58 +0000
commit9dfd7bd520ee598b3033a0c47b8b649bd3988c7c (patch)
tree73de6cf28c9296701cb202addfbf51cea6833d62 /libs/hwui/Program.cpp
parentd8f32ea2dffd3f6a080b4eb55a11c0f1c6d7a3a6 (diff)
parent6c15ffa196fc9b7724c189d833c3435d8db12266 (diff)
Merge "Refactoring of Program ownership/lifecycle, and WIP Glop rendering path"
Diffstat (limited to 'libs/hwui/Program.cpp')
-rw-r--r--libs/hwui/Program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp
index fb07dfab974a..5f34b3495681 100644
--- a/libs/hwui/Program.cpp
+++ b/libs/hwui/Program.cpp
@@ -46,7 +46,7 @@ Program::Program(const ProgramDescription& description, const char* vertex, cons
glAttachShader(mProgramId, mVertexShader);
glAttachShader(mProgramId, mFragmentShader);
- position = bindAttrib("position", kBindingPosition);
+ bindAttrib("position", kBindingPosition);
if (description.hasTexture || description.hasExternalTexture) {
texCoords = bindAttrib("texCoords", kBindingTexCoords);
} else {