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

Commit 14331ab1 authored by Jason Sams's avatar Jason Sams
Browse files

Initialize clipping structure

placeholder until array clipping is added to the API.

Change-Id: Ib20dbd71989c559c0669385a5088ec261596913c
parent 82a1a2c6
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1382,6 +1382,14 @@ nScriptForEach(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot,
        sc.zStart     = limit_ptr[4];
        sc.zEnd       = limit_ptr[5];
        sc.strategy   = RS_FOR_EACH_STRATEGY_DONT_CARE;
        sc.arrayStart = 0;
        sc.arrayEnd = 0;
        sc.array2Start = 0;
        sc.array2End = 0;
        sc.array3Start = 0;
        sc.array3End = 0;
        sc.array4Start = 0;
        sc.array4End = 0;

        sca = ≻
    }