Skip to content

Commit 11cbfdf

Browse files
committed
fixed offset argument in PGLES
1 parent a1f379d commit 11cbfdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/processing/opengl/PGLES.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ public void texSubImage2D(int target, int level, int xOffset, int yOffset, int w
12341234

12351235
@Override
12361236
public void copyTexSubImage2D(int target, int level, int xOffset, int yOffset, int x, int y, int width, int height) {
1237-
GLES20.glCopyTexSubImage2D(target, level, x, y, xOffset, xOffset, width, height);
1237+
GLES20.glCopyTexSubImage2D(target, level, x, y, xOffset, yOffset, width, height);
12381238
}
12391239

12401240
@Override

0 commit comments

Comments
 (0)