Fixed false optimisation on Mali-G71

This commit is contained in:
r.kuznetsov 2017-05-12 17:11:21 +03:00
parent c32d1b02d2
commit 15d3d351a2
2 changed files with 4 additions and 2 deletions

View file

@ -440,7 +440,9 @@ void RouteShape::CacheRoute(ref_ptr<dp::TextureManager> textures, RouteData & ro
PrepareGeometry(routeData.m_sourcePolyline.GetPoints(), routeData.m_pivot, segmentsColors,
geometry, joinsGeometry, routeData.m_length);
dp::GLState state = dp::GLState(gpu::ROUTE_PROGRAM, dp::GLState::GeometryLayer);
dp::GLState state =
dp::GLState(routeData.m_pattern.m_isDashed ? gpu::ROUTE_DASH_PROGRAM : gpu::ROUTE_PROGRAM,
dp::GLState::GeometryLayer);
state.SetColorTexture(textures->GetSymbolsTexture());
BatchGeometry(state, make_ref(geometry.data()), static_cast<uint32_t>(geometry.size()),
make_ref(joinsGeometry.data()), static_cast<uint32_t>(joinsGeometry.size()),

View file

@ -19,7 +19,7 @@ float alphaFromPattern(float curLen, float dashLen, float gapLen)
void main()
{
vec4 color = u_color;
vec4 color = u_color + v_color;
if (v_length.x < v_length.z)
{
color.a = 0.0;