I am trying to calculate normal map and bump map of some images. In order to do this, I am using Craig's Utility Library. However when I try to create bump map I am getting an exception saying

"VerificationException was unhandled : Operation could destabilize the runtime".

How can I solve this? The code throws exception in second line (it throws the same exception for normal map too, but this one comes first):

        BumpMap bumpMap = new BumpMap();
        pic = bumpMap.Create(pic);
link|improve this question

29% accept rate
feedback

1 Answer

That sort of of error usually happens when doing meta-programming (via something like ILGenerator), and getting it wrong; for example, issuing a "call" when a "callvirt" was needed, or borking the stack. It sounds to me like simply: a bug in the library. So report it to the author, or investigate it and fit it yourself.

It is technically also possible that the C# compiler has a bug and is emitting the wrong code, but that seems relatively unlikely.

link|improve this answer
I don't think it is because of a bug in the library. I want to search about meta-programming thing. Thank you. – user1125953 Jan 10 at 9:34
@user1125953 why don't you think it is a bug in the library? a method call doesn't work: library bug! (my guess is that the library is using some meta-programming internally, and: has a bug; that's OK - it happens; the author just adds a unit test, fixes it, and carries on) – Marc Gravell Jan 10 at 9:36
It may be of course. But I could't find anybody who experienced this error who are using this library. That's why I said so... – user1125953 Jan 10 at 9:38
@user1125953 can you perhaps post the bits of the stacktrace that aren't specific to your code? – Marc Gravell Jan 10 at 9:46
Actually, I don't know how to do that sorry – user1125953 Jan 10 at 10:53
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.