Skip to content

Commit 95bce1a

Browse files
committed
Fix Renderable.getVertexAttributesMask (return getMask, not getMaskWithSizePacked)
1 parent 6fa93cf commit 95bce1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdx/src/com/badlogic/gdx/graphics/g3d/Renderable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public long getVertexAttributesMask () {
158158
final VertexAttributes insAttrs = instances.getAttributes();
159159
return attrs.getMask() | insAttrs.getMask();
160160
} else {
161-
return attrs.getMaskWithSizePacked();
161+
return attrs.getMask();
162162
}
163163
}
164164

0 commit comments

Comments
 (0)