jeko0o
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2012
02:00 PM
Create a Free template with roScreen
Hi all,
I would ask your help with the following, I am trying to create a free template roscreen in order to draw the background screen and buttons to emulate a user interface ... I find it all right, but the function that creates reinvoke these components after a few attempts I elements appear on the screen (if I can create but not display) .. apparently many objects are being created and the memory is saturated .. that is why I wonder if there is any way of free video memory or forcing the destruction of an object that is not using ..?
I would ask your help with the following, I am trying to create a free template roscreen in order to draw the background screen and buttons to emulate a user interface ... I find it all right, but the function that creates reinvoke these components after a few attempts I elements appear on the screen (if I can create but not display) .. apparently many objects are being created and the memory is saturated .. that is why I wonder if there is any way of free video memory or forcing the destruction of an object that is not using ..?
3 REPLIES 3
MSGreg
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2012
02:19 PM
Re: Create a Free template with roScreen
I think setting unused components to invalid (or out of scope) would be the first step. To be successful, there must be no variables pointing to the now-unused element.
If the elements are not part of a circular reference, they should be freed immediately. If they are part of a circular reference, the garbage collector may need to run. In most circumstances, the automatic call of the garbage collector should be sufficient. See "Garbage Collection"
If the elements are not part of a circular reference, they should be freed immediately. If they are part of a circular reference, the garbage collector may need to run. In most circumstances, the automatic call of the garbage collector should be sufficient. See "Garbage Collection"
MSGreg
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2012
02:24 PM
Re: Create a Free template with roScreen
Note that another post suggests there is only 18MB-22MB of video memory available after everything else is allocated. If this is in fact the only available memory for roBitmaps (and I'm not sure of that), then you will only be able to get approximately 3-4 full-size HD (1280x720) bitmaps in memory as "standby" components. It's worth testing to determine the limits.
jeko0o
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2012
07:24 PM
Re: Create a Free template with roScreen
MSGreg thanks .. I finally solve the problem .. the problem was that this saturating the memory of objects that kept a reference .. that is why were not released .....