瀏覽代碼

Fixed length of data array for uv data.

Daniel Kauth 11 年之前
父節點
當前提交
c787596441
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      bbiwarg/DataSource/IisuDataSource.cs

+ 2 - 2
bbiwarg/DataSource/IisuDataSource.cs

@@ -187,8 +187,8 @@ namespace bbiwarg.DataSource
 
             IntPtr imageData = uvImage.Value.Raw;
 
-            float[] uvData = new float[width * height];
-            Marshal.Copy(imageData, uvData, 0, width * height);
+            float[] uvData = new float[2 * width * height];
+            Marshal.Copy(imageData, uvData, 0, 2 * width * height);
 
             return new UVImage(width, height, uvData);
         }