Merge "Fix RS graphics samples."
This commit is contained in:
committed by
Android (Google) Code Review
commit
10fa05711b
@@ -56,12 +56,12 @@ int root() {
|
||||
Ball_t *bout;
|
||||
|
||||
if (frame & 1) {
|
||||
rsSetObject(&bc.ain, rsGetAllocation(balls2));
|
||||
rsSetObject(&bc.aout, rsGetAllocation(balls1));
|
||||
bc.ain = rsGetAllocation(balls2);
|
||||
bc.aout = rsGetAllocation(balls1);
|
||||
bout = balls2;
|
||||
} else {
|
||||
rsSetObject(&bc.ain, rsGetAllocation(balls1));
|
||||
rsSetObject(&bc.aout, rsGetAllocation(balls2));
|
||||
bc.ain = rsGetAllocation(balls1);
|
||||
bc.aout = rsGetAllocation(balls2);
|
||||
bout = balls1;
|
||||
}
|
||||
|
||||
@@ -78,8 +78,6 @@ int root() {
|
||||
frame++;
|
||||
rsgBindProgramFragment(gPFPoints);
|
||||
rsgDrawMesh(partMesh);
|
||||
rsClearObject(&bc.ain);
|
||||
rsClearObject(&bc.aout);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ void init() {
|
||||
gTouchY = 50.0f;
|
||||
}
|
||||
|
||||
int root(int launchID) {
|
||||
int root(void) {
|
||||
|
||||
// Clear the background color
|
||||
rsgClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
|
||||
@@ -34,7 +34,7 @@ void init() {
|
||||
|
||||
int textPos = 0;
|
||||
|
||||
int root(int launchID) {
|
||||
int root(void) {
|
||||
|
||||
rsgClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
|
||||
@@ -45,7 +45,7 @@ int root(int launchID) {
|
||||
rsgBindFont(gItalic);
|
||||
|
||||
rs_allocation listAlloc;
|
||||
rsSetObject(&listAlloc, rsGetAllocation(gList));
|
||||
listAlloc = rsGetAllocation(gList);
|
||||
int allocSize = rsAllocationGetDimX(listAlloc);
|
||||
|
||||
int width = rsgGetWidth();
|
||||
|
||||
@@ -633,7 +633,7 @@ static void displayAnisoSample() {
|
||||
}
|
||||
}
|
||||
|
||||
int root(int launchID) {
|
||||
int root(void) {
|
||||
|
||||
gDt = rsGetDt();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user