Unity c#列出内存泄漏

时间:2015-06-10 08:51:11

标签: c# list memory-leaks unity3d

在运行时分配纹理时,我遇到严重的内存泄漏。

当useNewArray为true时,任务管理器显示Unity的内存使用量增长约20 MB /秒。

完整的(183k压缩)项目可以在这里下载: https://goo.gl/axFJDs

这是我的代码:

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class testMemory : MonoBehaviour {

public bool             useNewList = false;
Texture2D               newTexture;
public byte             color;
List<Color>             newColors;
List<byte>              staticPixelColorsList;
Color                   tempColor = Color.white;

// Use this for initialization
void Start () {

    newTexture = new Texture2D(0,0);
    newColors = new List<Color>();
    staticPixelColorsList = new List<byte>(120000);
    GetComponent<Renderer>().material.mainTexture = newTexture;
}

// Update is called once per frame
void Update () {

    // Make sure we're using different colors for every frame
    color = (byte)((Time.time*255) % 255);

    if(useNewList)
    {
        // This option causes a memory leak, but it's the one I need 
        // because I'm getting the texture data from an external source
        int newWidth  = Random.Range(200,400);
        int newHeight = Random.Range(200,400);

        // Create a new list each time
        List<byte> newPixels = new List<byte>(newWidth * newHeight);
        for(int i = 0; i < newWidth * newHeight; i++)
        {
            newPixels.Add ((byte)(color * i / 120000f));
        }
        setTexture(newPixels, newWidth, newHeight);

        // Clear the list (yeah, right)
        newPixels.Clear ();
    }
    else
    {
        // Use the same list, but assign new colors
        for(int i = 0; i < 120000; i++)
        {
            staticPixelColorsList.Add ((byte)(color * i / 120000f));
        }
        setTexture(staticPixelColorsList, 300, 400);
        staticPixelColorsList.Clear ();
    }
}

void setTexture(List<byte> inputPixels, int inputWidth, int inputHeight)
{
    newTexture.Resize(inputWidth, inputHeight);

    float colorValue;

    // Convert input value to Unity's "Color"
    for(int n = 0; n < newTexture.width * newTexture.height ; n++)
    {
        colorValue = inputPixels[n] / 255.0f;
        tempColor.r = tempColor.g = tempColor.b = colorValue;
        newColors.Add (tempColor);
    }

    // Actually set the texture pixels
    newTexture.SetPixels(newColors.ToArray());
    newTexture.Apply();
    newColors.Clear();
}
}

提前完成。

2 个答案:

答案 0 :(得分:2)

根据此MSDN Articleml.id方法将List<T>.Clear属性重置为0,并释放对集合元素的所有引用。

但是,容量保持不变。因此,分配相同数量的内存。要释放此内存,应调用Count方法,或手动设置TrimExcess属性。

每次调用Capacity方法时,可能不是创建一个新的newPixels列表,而是可以在函数外部创建此列表(可能在类声明中),并在每次{{{}时重新填充它。 1}}方法被调用?清除是可选的,因为每次调用都会覆盖内容。这也可以提高性能,因为您的代码不必在每次更新结束时释放集合的每个成员。

答案 1 :(得分:0)

显然这是Texture2D.Apply()的错误。它如此之深,Unity的剖析器没有显示泄漏,但外部工具确实如此。 Unity已经承认了这个问题并正在寻求解决方案。没有给出日期。感谢您的帮助: - )