v0.9.4: removed unnecessary texture reference in TextureFilm

This commit is contained in:
Evan Debenham
2021-07-06 18:19:51 -04:00
parent 001c40f15e
commit 72275d240d
2 changed files with 12 additions and 11 deletions

View File

@@ -109,7 +109,7 @@ public class SmartTexture extends Texture {
public RectF uvRect( float left, float top, float right, float bottom ) {
return new RectF(
left / width,
left / width,
top / height,
right / width,
bottom / height );