summaryrefslogtreecommitdiff
path: root/libs/hwui/ProgramCache.cpp
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-11-21 09:49:08 -0800
committerAndreas Gampe <agampe@google.com>2014-11-21 10:39:21 -0800
commit42ddc18d108f789705ad4eb697ce9599ad322507 (patch)
tree53ed2c03a53112f6bfd515a6d03b02dfed0cc9e9 /libs/hwui/ProgramCache.cpp
parentf926d71b8ef2790da067550144860705c1a61fe5 (diff)
Frameworks/base: Unused parameters in hwui
Remove Clang cutout for unused parameters. Fix warnings. Remove Clang cutout for deprecated Skia function usage. Has been fixed in the L push. Change-Id: I7ea073ff67127cc1e14e798b655e2c50615fe8e7
Diffstat (limited to 'libs/hwui/ProgramCache.cpp')
-rw-r--r--libs/hwui/ProgramCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/ProgramCache.cpp b/libs/hwui/ProgramCache.cpp
index 06353c096adc..a5911504f6c0 100644
--- a/libs/hwui/ProgramCache.cpp
+++ b/libs/hwui/ProgramCache.cpp
@@ -455,7 +455,7 @@ Program* ProgramCache::get(const ProgramDescription& description) {
// Program generation
///////////////////////////////////////////////////////////////////////////////
-Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
+Program* ProgramCache::generateProgram(const ProgramDescription& description, programid /* key */) {
String8 vertexShader = generateVertexShader(description);
String8 fragmentShader = generateFragmentShader(description);