Pippopluto
10 years agoHonored Guest
Exception when calling Ovr_destroy()
HI all, when i call this destructor
I have an exception that say
OVR Error:
Code: -3010 -- ovrError_LeakingResources
Description: Client disconnecting with active texture sets. This will lead to instability in the calling application
so I add this to destructor
With this, i don't have the ovrError but still have an exception
exception generated in 0x09233800 in Progetto1.exe: 0xC0000005: ecces violated during execution of 0x09233800.
I have translate exception code from italian.
Do I miss something when shutting down the hmd? I'm using 0.7 sdk
COculus::~COculus()
{
ovr_Destroy(hmd);
ovr_Shutdown();
}
I have an exception that say
OVR Error:
Code: -3010 -- ovrError_LeakingResources
Description: Client disconnecting with active texture sets. This will lead to instability in the calling application
so I add this to destructor
COculus::~COculus()
{
ovr_DestroySwapTextureSet(hmd, TextureSet[0]);
ovr_DestroySwapTextureSet(hmd, TextureSet[1]);
ovr_DestroyMirrorTexture;
ovr_Destroy(hmd);
ovr_Shutdown();
}
With this, i don't have the ovrError but still have an exception
exception generated in 0x09233800 in Progetto1.exe: 0xC0000005: ecces violated during execution of 0x09233800.
I have translate exception code from italian.
Do I miss something when shutting down the hmd? I'm using 0.7 sdk