Remove unused member variable from DeviceInfo.

Change-Id: Id7e2ba1d6abdb54a455114693183c4672f605134
This commit is contained in:
Derek Sollenberger
2016-07-22 12:12:53 -04:00
parent 7b59930f3a
commit 48e44acbce

View File

@@ -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;
};