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
After referring to the project [https://github.com/jonathanpeppers/Android-NativeAOT], I have a android studio project also want to draw skbitmap by the jni bridge and skiasharp,if i draw a single bitmap,it is work ok,However, if keep drawing, the problem of flickering will occur ,the main source code as follows,please help how to fixed this bug ,thanks
Code
GLSurfaceView.Renderer
`public class VinnoGLRender implements GLSurfaceView.Renderer {
private VinnoGLView glView;
public VinnoGLRender(VinnoGLView v) {
Net2Native.getInstance().setVinnoGLView(this);
glView = v;
}
@Override
public void onSurfaceCreated(GL10 gl10, EGLConfig eglConfig) {
Log.d("VinnoGLRender", "onSurfaceCreated:" + Net2Native.getInstance().nativeThreadId());
//VinnoBridge.glInit();
GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
}
@Override
public void onSurfaceChanged(GL10 gl10, int w, int h) {
Log.d("VinnoGLRender", "onSurfaceChanged:" + Net2Native.getInstance().nativeThreadId());
VinnoBridge.glResize(w, h);
}
@Override
public void onDrawFrame(GL10 gl10) {
//Log.d("VinnoGLRender","onDrawFrame:" + Net2Native.getInstance().nativeThreadId());
VinnoBridge.glDraw();
}
public void Refresh() {
//glView.queueEvent();
glView.requestRender();
}
Description
After referring to the project [https://github.com/jonathanpeppers/Android-NativeAOT], I have a android studio project also want to draw skbitmap by the jni bridge and skiasharp,if i draw a single bitmap,it is work ok,However, if keep drawing, the problem of flickering will occur ,the main source code as follows,please help how to fixed this bug ,thanks
Code
GLSurfaceView.Renderer
`public class VinnoGLRender implements GLSurfaceView.Renderer {
}`
JniBridge
`extern "C" JNIEXPORT void JNICALL Java_com_vinno_sdk_VinnoBridge_glResize(JNIEnv *env, jclass clazz, jint width, jint height)
{
VSkiaResize(width,height);
}
extern "C" JNIEXPORT void JNICALL Java_com_vinno_sdk_VinnoBridge_glDraw(JNIEnv *env, jclass clazz)
{
VSkiaDrawFrame();
}`
C# Render
`using SkiaSharp;
using Vinno.Infrastructure;
namespace Vinno.Sdk.GLES
{
public class GLRender
{
private const SKColorType colorType = SKColorType.Rgba8888;
private const GRSurfaceOrigin surfaceOrigin = GRSurfaceOrigin.BottomLeft;
private GRContext context = null;
private GRGlFramebufferInfo glInfo;
private GRBackendRenderTarget renderTarget;
private SKSurface surface;
private SKCanvas canvas;
}
`
Expected Behavior
can keep drawing skbitmap without flickering
Actual Behavior
keep drawing skbitmap with flickering
Version of SkiaSharp
3.118.0-preview.2 (Next Preview)
Last Known Good Version of SkiaSharp
3.118.0-preview.2 (Next Preview)
IDE / Editor
Visual Studio (Windows)
Platform / Operating System
Android
Platform / Operating System Version
visualstudio 2022
dotnet 9
skiasharp 3.118.0-preview.2.3
android studio 2024
Devices
No response
Relevant Screenshots
No response
Relevant Log Output
Code of Conduct
The text was updated successfully, but these errors were encountered: