commit | 44cac134655d5c3b2eeab2e42792c70a7aa8b92f | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Wed Sep 23 18:34:53 2009 -0700 |
committer | Mathias Agopian <mathias@google.com> | Wed Sep 23 18:55:02 2009 -0700 |
tree | 517d1519e56a14c4ebec42037af458c09b0c2b28 | |
parent | 8434c5369304e639efe8eab368ca410c589d87c2 [diff] [blame] |
fix [2142193] disable GL_LINEAR when not needed
diff --git a/libs/surfaceflinger/Transform.h b/libs/surfaceflinger/Transform.h index 4c4528e..78f5c19 100644 --- a/libs/surfaceflinger/Transform.h +++ b/libs/surfaceflinger/Transform.h
@@ -50,6 +50,14 @@ ROT_INVALID = 0x80000000 }; + enum type_mask { + IDENTITY = 0, + TRANSLATE = 0x1, + SCALE = 0x2, + AFFINE = 0x4, + PERSPECTIVE = 0x8 + }; + bool transformed() const; int32_t getOrientation() const; bool preserveRects() const;