diff options
| author | 2014-09-02 19:25:08 +0000 | |
|---|---|---|
| committer | 2014-09-02 19:25:09 +0000 | |
| commit | 0fd79c955b3745648d5f326bc784ced1e1188935 (patch) | |
| tree | e093a71df69a08c286cb3375c3eb3615e4ccba6b /libs/hwui/ProgramCache.cpp | |
| parent | 1611c21dfdf102fa4eadd3cab4c7bd5fda061826 (diff) | |
| parent | 68a73e8700c3bb30395e4ebf1b6e5a9b81699a5a (diff) | |
Merge "Fix precision issues for roundrect clipping" into lmp-dev
Diffstat (limited to 'libs/hwui/ProgramCache.cpp')
| -rw-r--r-- | libs/hwui/ProgramCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/ProgramCache.cpp b/libs/hwui/ProgramCache.cpp index c802b183d41c..23fe1b990df5 100644 --- a/libs/hwui/ProgramCache.cpp +++ b/libs/hwui/ProgramCache.cpp @@ -88,7 +88,7 @@ const char* gVS_Header_Varyings_HasGradient[6] = { "varying vec2 ditherTexCoords;\n", }; const char* gVS_Header_Varyings_HasRoundRectClip = - "varying vec2 roundRectPos;\n"; + "varying highp vec2 roundRectPos;\n"; const char* gVS_Main = "\nvoid main(void) {\n"; const char* gVS_Main_OutTexCoords = |