sonnykr
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
12:47 PM
[Solved] roTextureRequestEvent getBitmap() fails
Hey All,
Im using roTextureManager to download some images, but when I do msg.GetBitmap(), the console freezes and Roku restarts. Or, some times, it succeeds, and returns a bitmap with 0 width and height. Has anybody encountered this problem, with roTextureManager before?
Thanks
Im using roTextureManager to download some images, but when I do msg.GetBitmap(), the console freezes and Roku restarts. Or, some times, it succeeds, and returns a bitmap with 0 width and height. Has anybody encountered this problem, with roTextureManager before?
Thanks
13 REPLIES 13

squirreltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
01:21 PM
Re: roTextureRequestEvent getBitmap() fails
if the pic is bigger than 2048 in any direction and you are not requesting a size less than or equal to that it will fail. Otherwise sounds like you could be out of memory.
Kinetics Screensavers
sonnykr
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
01:55 PM
Re: roTextureRequestEvent getBitmap() fails
My images are around 300X500
and the memory usage is:
and the memory usage is:
Available memory 56921472 used 13078528 max 70000000

squirreltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
02:33 PM
Re: roTextureRequestEvent getBitmap() fails
"sonnykr" wrote:
My images are around 300X500
and the memory usage is:Available memory 56921472 used 13078528 max 70000000
OK but thats the amount before it gets to the crashing point. Roku3 yes?
Does it crash on the same image?
Different image but always #X in the list?
Kinetics Screensavers

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
02:43 PM
Re: roTextureRequestEvent getBitmap() fails
Can you share the code that's causing this? Are you verifying that roTextureRequestEvent.GetState() indicates the bitmap is ready (3)?
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)

NewManLiving
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2015
06:05 PM
Re: roTextureRequestEvent getBitmap() fails
In my experience with my grids which constantly request, cancel or unload textures in response to the user scrolling I have found that a return code of 3 does not always guarantee a valid bitmap handle. I always wondered why the example checks the validity of the bitmap after a return code of 3 - now I know. Does it eventually return valid. Yes so far it has. why there is such an infrequent anomalie I can only speculate as it pertains to my use of the texture manager. However I do not resend them as they do come in valid eventually.
My Channels: 2D API Framework Presentation: https://owner.roku.com/add/2M9LCVC
Updated: 11-11-2015 - Completed Keyboard interface
The Joel Channel ( Final Beta )
Updated: 11-11-2015 - Completed Keyboard interface
The Joel Channel ( Final Beta )
sonnykr
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2015
07:06 AM
Re: roTextureRequestEvent getBitmap() fails
"TheEndless" wrote:
Can you share the code that's causing this? Are you verifying that roTextureRequestEvent.GetState() indicates the bitmap is ready (3)?
My Code looks some thing like this:
if (msg <> invalid and type(msg) = "roTextureRequestEvent")
' read the response received
state = msg.GetState()
id = msg.GetId()
uri = msg.GetURI()
' check if the image was downloaded successfully
if (state = 3)
DebugLog("AsyncTextureManager", "Image downloaded successfully. URL : " + uri)
if (type(msg.GetBitmap()) = "roBitmap" or type(msg.GetBitmap()) = "bitmap")
receivedBitmap = msg.GetBitmap()
' execute the successCallback
successCallback(receivedBitmap, context)
else
DebugLog("AsyncTextureManager", "Bitmap download Failed")
end if
end if
end if
and
receivedBitmap = msg.GetBitmap()
is where it breaks.

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2015
07:55 AM
Re: roTextureRequestEvent getBitmap() fails
Interesting.. you're calling GetBitmap() three times in that code, and it doesn't blow up until the last one. I wouldn't expect it to, but have you tried only calling it once to see if it helps?
receivedBitmap = msg.GetBitmap()
if (type(receivedBitmap) = "roBitmap" or type(receivedBitmap) = "bitmap")
' execute the successCallback
successCallback(receivedBitmap, context)
else
DebugLog("AsyncTextureManager", "Bitmap download Failed")
end if
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
sonnykr
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2015
08:04 AM
Re: roTextureRequestEvent getBitmap() fails
That was it! That solved the issue. Thank you TheEndless 🙂

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2015
08:26 AM
Re: roTextureRequestEvent getBitmap() fails
"sonnykr" wrote:
That was it! That solved the issue. Thank you TheEndless 🙂
I'm glad that worked, but I can't think of any legitimate reason that it should have. Makes no sense that multiple calls to roTextureRequestEvent.GetBitmap() would cause a catastrophic failure like that. It must be doing something more behind the scenes than just returning the bitmap.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)