[Delphi] p'tit problème conversion cpp vers delphi

p'tit problème conversion cpp vers delphi [Delphi] - Delphi/Pascal - Programmation

Marsh Posté le 22-02-2003 à 18:05:59    

bon j'ai encore un petit blem (ca faisait longtemps que je vous avais pas emmerdé).
 
Ma ligne de code en cpp :
D3DXMATERIAL* matMaterials = (D3DXMATERIAL*)pMaterialsBuffer->GetBufferPointer();
 
j'ai tenté :
var
  matMaterials : Array of D3DXMATERIAL;
begin
  matMaterials := pMaterialsBuffer.GetBufferPointer();
 
mais je me tape un méchant "Exception EAccessViolation..."  :-/
 
si vous avez besoin de plus de code, la ligne en cpp est issue de http://www.andypike.com/tutorials/directx8/010.asp

Reply

Marsh Posté le 22-02-2003 à 18:05:59   

Reply

Marsh Posté le 24-02-2003 à 10:10:45    

je crois que tu as pas pense a initialiser ton array en delphi
avec par exemple :
 
SetLength(matMaterials, 1);
matMaterials[0] := pMaterialsBuffer.GetBufferPointer();

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed