diff options
author | 2011-04-25 12:56:34 -0700 | |
---|---|---|
committer | 2011-04-25 12:56:34 -0700 | |
commit | cc5a7d2328f7662fd4b17eb542c73cffbf799b9c (patch) | |
tree | 239944e4077269ea95907113d8fb2e83e25657f6 /libs/hwui/ProgramCache.h | |
parent | a13802d8805c2af2fae4d64e3dee99abd73ecfa9 (diff) | |
parent | 6cfdf4538049e4b96f50d8c0fe3119664420cc34 (diff) |
Merge "Fix bitfield bug with vertex shader selection"
Diffstat (limited to 'libs/hwui/ProgramCache.h')
-rw-r--r-- | libs/hwui/ProgramCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/ProgramCache.h b/libs/hwui/ProgramCache.h index cead75bcae2c..9a7a2d201277 100644 --- a/libs/hwui/ProgramCache.h +++ b/libs/hwui/ProgramCache.h @@ -57,7 +57,7 @@ namespace uirenderer { #define PROGRAM_KEY_COLOR_BLEND 0x80 #define PROGRAM_KEY_BITMAP_NPOT 0x100 #define PROGRAM_KEY_SWAP_SRC_DST 0x2000 -#define PROGRAM_KEY_VERTEX_WIDTH 0x4000 +#define PROGRAM_KEY_VERTEX_WIDTH (1 << 37) #define PROGRAM_KEY_BITMAP_WRAPS_MASK 0x600 #define PROGRAM_KEY_BITMAP_WRAPT_MASK 0x1800 |