Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed Jul 25, 2024
1 parent 5aa8cd4 commit a71dfd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public Array<RenderCommand> render (Skeleton skeleton) {
// Post-process UVs, require scaling by bitmap size
float[] uvsArray = command.uvs.items;
for (int ii = vertexStart, w = command.texture.getWidth(), h = command.texture.getHeight(),
nn = vertexStart + verticesLength; ii < nn; ii += 2) {
nn = vertexStart + verticesLength; ii < nn; ii += 2) {
uvsArray[ii] = uvsArray[ii] * w;
uvsArray[ii + 1] = uvsArray[ii + 1] * h;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public FloatArray getClippedVertices () {
}

/** Only returns a non-empty array if clipTrianglesUnpacked() was used **/
public FloatArray getClippedUvs() {
public FloatArray getClippedUvs () {
return clippedUvs;
}

Expand Down

0 comments on commit a71dfd6

Please sign in to comment.