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

Commit 2d9c39d6 authored by Jason Sams's avatar Jason Sams
Browse files

Fix two minor issues. Rename launchID to launchIndex and make util class...

Fix two minor issues.  Rename launchID to launchIndex and make util class Matrix public for apps to use.
parent 5f7fc27d
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];