Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0697267d authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 4719

* changes:
  Fix two minor issues.  Rename launchID to launchIndex and make util class Matrix public for apps to use.
parents b77490d9 2d9c39d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ import java.lang.Math;
import android.util.Log;


class Matrix {
public class Matrix {

    public Matrix() {
        mMat = new float[16];