Closed petejank closed 10 years ago
hi,
Sorry because i do not have this issue, but i did something that is probably related
could you try to modify EjectaGLSurfaceView.java and put
this.setEGLConfigChooser(8, 8, 8, 8, 16, 8);
in the method : public EjectaGLSurfaceView
should be
public EjectaGLSurfaceView(Context context, int width, int height) {
super(context);
//Sets OpenGLES 2.0 to be used
setEGLContextClientVersion(2);
this.setEGLConfigChooser(8, 8, 8, 8, 16, 8);
it solve some other issues in my case ;) but i guess it s a good candidate for yours
It indeed works. Thank you my good man.
@petejank great!
@aogilvie may i patch sources with this line ?
NB. it also correct every use of stencil buffer in ejecta (because stencil buffer is disabled by default in android)
e.g
ctx.arc(10,10, 100, 0, Math.PI);
ctx.fill();
=> fail without this patch ;)
dbl click ? or still issue ?
Double click ;).
This is the same issue (almost) as https://github.com/Wizcorp/Ejecta-X/issues/31. Opening a new one since author of the last one didn't provide any answer.
Log:
Also, what I did to "install" Ejecta:
Also checked on my mobile device. Any help would be greatly appreciated, since I'm totally, absolutely stuck.