From 48e44acbce98d7a49dae9cfd67a51178f3e17414 Mon Sep 17 00:00:00 2001 From: Derek Sollenberger Date: Fri, 22 Jul 2016 12:12:53 -0400 Subject: [PATCH] Remove unused member variable from DeviceInfo. Change-Id: Id7e2ba1d6abdb54a455114693183c4672f605134 --- libs/hwui/DeviceInfo.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/hwui/DeviceInfo.h b/libs/hwui/DeviceInfo.h index f576a4f480217..e551eb9bb8c0b 100644 --- a/libs/hwui/DeviceInfo.h +++ b/libs/hwui/DeviceInfo.h @@ -16,7 +16,6 @@ #ifndef DEVICEINFO_H #define DEVICEINFO_H -#include "Extensions.h" #include "utils/Macros.h" namespace android { @@ -34,8 +33,6 @@ public: // with HWUI_NULL_GPU static void initialize(); - const Extensions& extensions() const { return mExtensions; } - int maxTextureSize() const { return mMaxTextureSize; } private: @@ -44,7 +41,6 @@ private: void load(); - Extensions mExtensions; int mMaxTextureSize; };