Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What error this points to - "new_window_surface returns 0x3000"

In my activity, I want to create an independent surface (not linked to existing activity window) and show some content in it. I mean this window should come on top of my existing activity window).

When I try that, I get this message in logcat:

D/mali_winsys( 119): new_window_surface returns 0x3000

And my window is not seen. Can someone help me by telling if this message points to some error?

I am trying it on 4.4.2 (Nexus 10 tablet)

like image 900
Sushil Avatar asked Jul 17 '14 11:07

Sushil


1 Answers

This is not an error. I just spent the last hour trying to find out what the message means, and discovered in egl.h that 0x3000 is the return code for EGL_SUCCESS. So the message is just saying that the attempt to get a new window surface was successful.

like image 171
swestrup Avatar answered Nov 14 '22 13:11

swestrup