diff options
author | Xiaofei Wan <xiaofei.wan@intel.com> | 2014-04-17 14:17:22 +0800 |
---|---|---|
committer | Xiaofei Wan <xiaofei.wan@intel.com> | 2014-04-17 14:17:33 +0800 |
commit | 92b539c7340237c41f93c02cab3efa46c2472682 (patch) | |
tree | dd6801a70dd596a17d2ec8e2e18ae03ce147cc15 | |
parent | ca92fdc25da99afdfe33447aefb2cd270c5b5e4d (diff) | |
download | android_packages_wallpapers_Galaxy4-92b539c7340237c41f93c02cab3efa46c2472682.tar.gz android_packages_wallpapers_Galaxy4-92b539c7340237c41f93c02cab3efa46c2472682.tar.bz2 android_packages_wallpapers_Galaxy4-92b539c7340237c41f93c02cab3efa46c2472682.zip |
Fix abnormal display for static stars.
When Black Hole is selected as Live Wallpapers, many mosaic points are shown on the screen instead of the stars.
1). Change the size of staticstar.png and staticstar2.png to power of 2 to avoid display distortion;
2). Increase the scale factor to draw big stars.
Change-Id: I4ca34b72dda285d4d4d2cda7d99c2e2a5e095144
Signed-off-by: Xiaofei Wan <xiaofei.wan@intel.com>
-rw-r--r-- | res/drawable-nodpi/staticstar.png | bin | 1332 -> 1489 bytes | |||
-rw-r--r-- | res/drawable-nodpi/staticstar2.png | bin | 6971 -> 8232 bytes | |||
-rw-r--r-- | src/com/android/galaxy4/GalaxyRS.java | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/res/drawable-nodpi/staticstar.png b/res/drawable-nodpi/staticstar.png Binary files differindex 169d9e9..4663ac3 100644 --- a/res/drawable-nodpi/staticstar.png +++ b/res/drawable-nodpi/staticstar.png diff --git a/res/drawable-nodpi/staticstar2.png b/res/drawable-nodpi/staticstar2.png Binary files differindex 3bf88f0..e30dd77 100644 --- a/res/drawable-nodpi/staticstar2.png +++ b/res/drawable-nodpi/staticstar2.png diff --git a/src/com/android/galaxy4/GalaxyRS.java b/src/com/android/galaxy4/GalaxyRS.java index f6136ae..0e84cbe 100644 --- a/src/com/android/galaxy4/GalaxyRS.java +++ b/src/com/android/galaxy4/GalaxyRS.java @@ -152,7 +152,7 @@ public class GalaxyRS { Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight); ScriptField_VpConsts.Item i = new ScriptField_VpConsts.Item(); i.MVP = projNorm; - i.scaleSize = mDensityDPI / 240.0f; + i.scaleSize = mDensityDPI / 120.0f; mPvConsts.set(i, 0, true); mScript.invoke_positionParticles(); } |