diff options
| author | 2015-09-14 15:54:12 -0700 | |
|---|---|---|
| committer | 2015-09-21 13:14:20 -0700 | |
| commit | 6e6646c03788f198a9878763680c05342d7622f3 (patch) | |
| tree | cc00031398628aa5dd563f5628999de93c870b61 /libs/hwui/Extensions.h | |
| parent | 0e35962e6d5a1ca534040f3da3fd04ad505499f9 (diff) | |
Unify extensions parsing behavior
Removes remnants of EGL extension support, and persistence of
GL extension list.
Change-Id: I35aec12d900bdb33549ea47654bb8146f350ef48
Diffstat (limited to 'libs/hwui/Extensions.h')
| -rw-r--r-- | libs/hwui/Extensions.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libs/hwui/Extensions.h b/libs/hwui/Extensions.h index 636b631532bf..0a30d162f2e8 100644 --- a/libs/hwui/Extensions.h +++ b/libs/hwui/Extensions.h @@ -50,17 +50,7 @@ public: inline int getMajorGlVersion() const { return mVersionMajor; } inline int getMinorGlVersion() const { return mVersionMinor; } - bool hasGlExtension(const char* extension) const; - bool hasEglExtension(const char* extension) const; - - void dump() const; - private: - void findExtensions(const char* extensions, SortedVector<String8>& list) const; - - SortedVector<String8> mGlExtensionList; - SortedVector<String8> mEglExtensionList; - bool mHasNPot; bool mHasFramebufferFetch; bool mHasDiscardFramebuffer; |