commit | a2fe0a234bd6823f868742a3c137acb8875e1b03 | [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 | 42e6bcda7c6388e9b3544dec93f74fc85807faec | |
parent | 4327cf612b280fb51fe0ffb3c675be0413ad2744 [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;