I am starting out with Horde3d so i may be doing this wrong,
Everytime i try to run my program i get this error :
Here is my code :
Code:
#include "Horde3D.h"
int main()
{
h3dInit();
bool run=true;
h3dSetupViewport( 0, 0, 640, 480, true );
H3DRes pipeRes = h3dAddResource( H3DResTypes::Pipeline, "standard.pipeline.xml", 0 );
H3DNode cam = h3dAddCameraNode( H3DRootNode, "Camera", pipeRes );
while(run)
{
h3dRender( cam );
// Finish rendering of frame
h3dFinalizeFrame();
}
h3dRelease();
return 0;
}
IDE : Micrososft visual c++ 2008 express
OS : Windows 7 Ultimate 32 bit
as you can see i borrowed some code from the basic tutorial and i am probably looping the program the wrong way but it was just a test to build a simple window.
But i dont see whats causing the error.
Thanks in advanced.