How about adjusting z-order of video surface?
If it is possible, moving video surface to top is more reasonable.
2012. 6. 4. 오후 10:23에 "Kyle (LiuYong)" <just...@gmail.com>님이 작성:
> --
> Chromium Developers mailing list: chromi...@chromium.org
> View archives, change email options, or unsubscribe:
> http://groups.google.com/a/chromium.org/group/chromium-dev
Did you check in the gpu-process?
As I know, all of gles command are executed in the gpu-process.
2012. 6. 5. 오후 7:05에 "Kyle (LiuYong)" <just...@gmail.com>님이 작성:
Hi guys,
Thanks for any suggestions!/Kyle.--
Here is working code to hide white background in content shell. Works with version 50.0.2654.2.
void WebContentsViewAndroid::RenderViewCreated(RenderViewHost* host) {
+ content::RenderWidgetHostView* view = host->GetWidget()->GetView();
+ DCHECK(view);
+ view->SetBackgroundColor(SK_ColorTRANSPARENT);
}
getHolder().setFormat(PixelFormat.RGBA_8888);
setEGLConfigChooser(8,8,8,8,16,0);
gl.glClearColor(0f,0f,0f,0f);gl.glClear(GL10.GL_COLOR_BUFFER_BIT);