Map::Insert a COM Object question, about storing and releasing[Solved]

Started by
1 comment, last by Conny14156 11 years, 2 months ago

Hi,

This may seems as a weird question but, is this the correct way to "Store" a ID3D11ShaderResourceView* Pointer?

Am trying to store COM Object pointer inside a simple map with a std::string key.

I get no error's but when I quit the program it complains about unreleased objects.

Neither do I get a error when I try to release the "objects".

So I start to question my method about how to release it.

The reason why I am using a while loop with .empty(); is cause I can't seems to use the [] operator except for [0]. while am at it would appreciate if someone could explain that to >.<


		
ID3D11ShaderResourceView* t;
std::map<std::string,ID3D11ShaderResourceView*> TotalTexture;
std::vector<std::string> TotalTextureToLoad;
TotalTexture.insert
(
TotalTexture.end(),std::pair<std::string,ID3D11ShaderResourceView*>(TotalTextureToLoad,t)

);

while(!TotalTexture.empty())
{
	TotalTexture.begin()->second->Release();
	TotalTexture.erase(TotalTexture.begin());
}

Advertisement

Have you checked the return of the method call, I have never used D3D, but in the reference manual it says it will print the reference count, so you can check if the problem is here or otherwhere.

To clean the map, I believe the code should be something like this:


for (std::map<std::string,ID3D11ShaderResourceView*>::iterator it = TotalTexture.begin(); it != TotalTexture.end(); ++it){
	it->second->Release();
}
TotalTexture.clear();

References I used are those two:

http://www.cplusplus.com/reference/map/map/begin/

http://www.cplusplus.com/reference/map/map/clear/

Currently working on a scene editor for ORX (http://orx-project.org), using kivy (http://kivy.org).

Got it to work, The problem was that I Called the loadAll(), twice. and I was trying to insert the same key inside the map, so there were a certain numbers of objects that wasnt getting released, cause the pointer was not inside the map.

This topic is closed to new replies.

Advertisement