summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2013-03-25 14:16:48 -0700
committerStephen Hines <srhines@google.com>2013-03-25 14:18:40 -0700
commitc719603ee9560f38eba6686e922a365b8e6cbce2 (patch)
treef0fe30e58399652523b050e047053d2bcf2ac9c1
parent33ab06cf6d352d8d8eb07da6ec7dcd58f2648897 (diff)
downloadandroid_packages_wallpapers_PhaseBeam-c719603ee9560f38eba6686e922a365b8e6cbce2.tar.gz
android_packages_wallpapers_PhaseBeam-c719603ee9560f38eba6686e922a365b8e6cbce2.tar.bz2
android_packages_wallpapers_PhaseBeam-c719603ee9560f38eba6686e922a365b8e6cbce2.zip
WAR for compiler crash on PhaseBeam.
Bug: 8338821 Change-Id: I31c0a6e98283a25c7f2afa5e9b7d256b2c2741c1
-rw-r--r--src/com/android/phasebeam/phasebeam.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/phasebeam/phasebeam.rs b/src/com/android/phasebeam/phasebeam.rs
index 037f303..26b2910 100644
--- a/src/com/android/phasebeam/phasebeam.rs
+++ b/src/com/android/phasebeam/phasebeam.rs
@@ -63,10 +63,11 @@ void positionParticles() {
halfScreenHeight = screenHeight/2.0f;
quarterScreenWidth = screenWidth/4.0f;
quarterScreenHeight = screenHeight/4.0f;
- Particle_t* particle = dotParticles;
+ rs_allocation aParticles = rsGetAllocation(dotParticles);
numDotParticles = rsAllocationGetDimX(rsGetAllocation(dotParticles));
numVertColors = rsAllocationGetDimX(rsGetAllocation(vertexColors));
for(int i=0; i<numDotParticles; i++) {
+ Particle_t* particle = (Particle_t *) rsGetElementAt(aParticles, i);
particle->position.x = rsRand(0.0f, 3.0f);
particle->position.y = rsRand(-1.25f, 1.25f);
@@ -85,8 +86,6 @@ void positionParticles() {
}
particle->position.z = z;
particle->offsetX = 0;
-
- particle++;
}
Particle_t* beam = beamParticles;