You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there a way to change the background color of FastRenderer to be white instead of black. I am able to change to white only after the first drawing event happen like this in FastRenderer#114
// Clear the screen with white
GLES20.glClearColor(1.0f, 1.0f, 1.0f, 1.0f)
However the app always initialize with black background. Also is it possible to overlay the drawing on top of a webview?
The text was updated successfully, but these errors were encountered:
And, you just set your parent view's background to Color.WHITE, then maybe your can see your bg with white color. Also you should note that surfaceview will at the top of your view tree.
Hi there a way to change the background color of FastRenderer to be white instead of black. I am able to change to white only after the first drawing event happen like this in FastRenderer#114
However the app always initialize with black background. Also is it possible to overlay the drawing on top of a webview?
The text was updated successfully, but these errors were encountered: