2

我正在使用 DirectX9 通过手动组装地面的顶点来处理一些简单的地形。

在我设置索引的代码部分,我得到了一个错误:

Windows 在 test.exe 中触发了一个断点。

这可能是由于堆损坏,这表明 test.exe 或其已加载的任何 DLL 中存在错误。

这是我的代码中给我带来问题的部分,我几乎 100% 确定它已链接到我的索引指针,但我完成后将其删除......所以我不确定是什么问题是。

int total = widthQuads * heightQuads * 6;
DWORD *indices = new DWORD[totalIdx];
for (int y = 0; y < heightQuads; y++)
{
    for (int x = 0; x < widthQuads; x++)
    { //Width of nine:
        int lowerLeft = x + y * 9;
        int lowerRight = (x + 1) + y * 9;
        int topLeft = x + (y + 1) * 9;
        int topRight = (x + 1) + (y + 1) * 9;
        //First triangle:
        indices[counter++] = topLeft;
        indices[counter++] = lowerRight;
        indices[counter++] = lowerLeft;
        //Second triangle:
        indices[counter++] = topLeft;
        indices[counter++] = topRight;
        indices[counter++] = lowerRight;
    }
}

d3dDevice->CreateIndexBuffer(sizeof(DWORD)* total, 0, D3DFMT_INDEX16, 
    D3DPOOL_MANAGED, &groundindex, 0);
void* mem = 0;
groundindex->Lock(0, 0, &mem, 0);
memcpy(mem, indices, total * sizeof (DWORD));
groundindex->Unlock();

delete[] indices;

当我删除此块时,我的程序运行正常。

4

2 回答 2

2

您给出的代码看起来不错 - 有一个警告:初始值counter不在代码本身中。因此,要么您没有从 开始counter = 0,要么其他一些代码正在踩踏您的indices缓冲区。

这就是堆损坏的美妙之处。无法保证该错误位于代码的已删除部分中。它可能只是隐藏代码中其他地方存在的错误。

于 2012-05-14T15:55:04.090 回答
0
int total = widthQuads * heightQuads * 6;
DWORD *indices = new DWORD[totalIdx];

你不应该做“new DWORD [total];”吗?这里?

于 2012-05-14T16:09:48.453 回答