forked from organicmaps/organicmaps
Tuned arrow scale and color
This commit is contained in:
parent
66e47a51a1
commit
fe94171941
2 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ varying float v_intensity;
|
|||
uniform sampler2D u_colorTex;
|
||||
#endif
|
||||
|
||||
const vec3 color = vec3(0.0, 0.75, 1.0);
|
||||
const vec3 color = vec3(0.11, 0.59, 0.94);
|
||||
|
||||
void main()
|
||||
{
|
||||
|
@ -14,7 +14,7 @@ void main()
|
|||
lowp vec4 fakeColor = texture2D(u_colorTex, vec2(0.0, 0.0)) * kFakeColorScalar;
|
||||
#endif
|
||||
|
||||
vec4 resColor = vec4((v_intensity * 0.4 + 0.6) * color, 1.0);
|
||||
vec4 resColor = vec4((v_intensity * 0.3 + 0.7) * color, 1.0);
|
||||
|
||||
#ifdef SAMSUNG_GOOGLE_NEXUS
|
||||
gl_FragColor = resColor + fakeColor;
|
||||
|
|
|
@ -19,8 +19,8 @@ namespace df
|
|||
|
||||
double const kArrowSizeX = 2.0;
|
||||
double const kArrowSizeY = 3.0;
|
||||
double const kArrow3dScaleMin = 1.2;
|
||||
double const kArrow3dScaleMax = 2.0;
|
||||
double const kArrow3dScaleMin = 1.0;
|
||||
double const kArrow3dScaleMax = 2.2;
|
||||
double const kArrow3dMinZoom = 16;
|
||||
|
||||
Arrow3d::Arrow3d()
|
||||
|
|
Loading…
Add table
Reference in a new issue