Skip to content

Commit

Permalink
Trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Aug 7, 2021
1 parent 65b3e73 commit 524d0a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 0.92.14 - Aug 7, 2021
# 0.92.15 - Aug 7, 2021

Added:
Added:

- RuntimeEffect #120 #124 thx @Vechro

Expand Down
3 changes: 1 addition & 2 deletions shared/java/RuntimeEffect.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ public Shader makeShader(@Nullable Data uniforms, @Nullable Shader[] children, @
Stats.onNativeCall();
int childCount = children == null ? 0 : children.length;
long[] childrenPtrs = new long[childCount];
for (int i = 0; i < childCount; i++) {
for (int i = 0; i < childCount; i++)
childrenPtrs[i] = Native.getPtr(children[i]);
}
float[] matrix = localMatrix == null ? null : localMatrix._mat;
return new Shader(_nMakeShader(_ptr, Native.getPtr(uniforms), childrenPtrs, matrix, isOpaque));
}
Expand Down

0 comments on commit 524d0a0

Please sign in to comment.