mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
6 lines
168 B
Java
6 lines
168 B
Java
package org.linphone;
|
|
|
|
public class OpenGLESDisplay {
|
|
public static native void init(int ptr, int width, int height);
|
|
public static native void render(int ptr);
|
|
}
|