소스 검색

Fix iterations on buffer uploadFloats

clementlandrin 9 달 전
부모
커밋
2fb634fd16
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      h3d/Buffer.hx

+ 2 - 1
h3d/Buffer.hx

@@ -76,7 +76,8 @@ class Buffer {
 			var index : Int = bufPos;
 
 			var inputs = format.getInputs();
-			for ( i in 0...vertices ) {
+			for ( _ in 0...vertices ) {
+				@:privateAccess inputs.current = 0;
 				for ( input in inputs ) {
 					var elementCount = input.type.getSize();
 					var step = 0;