getEgl method

Future<List<int>> getEgl(
  1. int textureId
)

get created opengl context from native

Implementation

Future<List<int>> getEgl(int textureId) async {
  var result =
      List<int>.from(await FlutterGlPlatform.instance.getEgl_interface(textureId));
  return result;
}