diff options
Diffstat (limited to 'libs/hwui/Extensions.h')
-rw-r--r-- | libs/hwui/Extensions.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libs/hwui/Extensions.h b/libs/hwui/Extensions.h index 2c38507bd79a..0ecfdb1b3e0a 100644 --- a/libs/hwui/Extensions.h +++ b/libs/hwui/Extensions.h @@ -17,11 +17,6 @@ #ifndef ANDROID_HWUI_EXTENSIONS_H #define ANDROID_HWUI_EXTENSIONS_H -#include <cutils/compiler.h> - -#include <string> -#include <unordered_set> - namespace android { namespace uirenderer { @@ -45,6 +40,7 @@ public: inline bool hasFloatTextures() const { return mVersionMajor >= 3; } inline bool hasSRGB() const { return mHasSRGB; } inline bool hasSRGBWriteControl() const { return hasSRGB() && mHasSRGBWriteControl; } + inline bool hasLinearBlending() const { return hasSRGB() && mHasLinearBlending; } inline int getMajorGlVersion() const { return mVersionMajor; } inline int getMinorGlVersion() const { return mVersionMinor; } @@ -59,6 +55,7 @@ private: bool mHasUnpackSubImage; bool mHasSRGB; bool mHasSRGBWriteControl; + bool mHasLinearBlending; int mVersionMajor; int mVersionMinor; |