PxLoadImage problem

I have some problems using the PxLoadImage within a certain context.
I am using the PxLoadImage with a proper filled PxMethods_t structure, so
that I can use my own alloc, free, warning etc. just like it is shown in the
example of the help chapter.
The concrete problem is that if I am doing my calls to the PxLoadImage
before entering the PtMainLoop everything is working fine,
but if I want to call the PxLoadImage within a timer-event callback the
program is killed without any further error messages.
I am using log messages within the functions I support in the PxMethods_t
and none of these messages is shown.
If I have only some images the pre loading mechanism would work fine, but I
have to support about 600 Images so this would blow up my memory

TIA
-hp

Hi,

I have spoken with one of the developers and
There isn’t sufficient information here for him to troubleshoot your
problem. An elaboration or code snippet would be helpful.

Calling PxLoadImage() from a timer event should be OK, provided
you doesn’t allow your app to process event during the load. If you
do and the load takes a little while you might get into handling
another timer event and as it stands, PxLoadImage() is not re-entrant.

Regards
Brenda

HP Reichert <hp.reichert@idearemovesoft.de> wrote:

I have some problems using the PxLoadImage within a certain context.
I am using the PxLoadImage with a proper filled PxMethods_t structure, so
that I can use my own alloc, free, warning etc. just like it is shown in the
example of the help chapter.
The concrete problem is that if I am doing my calls to the PxLoadImage
before entering the PtMainLoop everything is working fine,
but if I want to call the PxLoadImage within a timer-event callback the
program is killed without any further error messages.
I am using log messages within the functions I support in the PxMethods_t
and none of these messages is shown.
If I have only some images the pre loading mechanism would work fine, but I
have to support about 600 Images so this would blow up my memory

TIA
-hp