Merge change 4719

* changes:
  Fix two minor issues.  Rename launchID to launchIndex and make util class Matrix public for apps to use.
This commit is contained in:
Android (Google) Code Review
2009-06-19 16:07:37 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ typedef struct {
void (*drawRect)(void *con, int32_t x1, int32_t x2, int32_t y1, int32_t y2);
} rsc_FunctionTable;
typedef int (*rsc_RunScript)(void *con, const rsc_FunctionTable *, uint32_t launchID);
typedef int (*rsc_RunScript)(void *con, const rsc_FunctionTable *, uint32_t launchIndex);
/* EnableCap */

View File

@@ -20,7 +20,7 @@ import java.lang.Math;
import android.util.Log;
class Matrix {
public class Matrix {
public Matrix() {
mMat = new float[16];