mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-03 19:39:20 +08:00
9558974080
* Refact. Build flutter web Signed-off-by: fufesou <shuanglongchen@yeah.net> * Refact. Flutter web, wrap Platform.xx Signed-off-by: fufesou <shuanglongchen@yeah.net> --------- Signed-off-by: fufesou <shuanglongchen@yeah.net>
21 lines
417 B
Dart
21 lines
417 B
Dart
import 'dart:typed_data';
|
|
|
|
class TextureRgbaRenderer {
|
|
Future<int> createTexture(int key) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
Future<bool> closeTexture(int key) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
Future<bool> onRgba(
|
|
int key, Uint8List data, int height, int width, int strideAlign) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
Future<int> getTexturePtr(int key) {
|
|
throw UnimplementedError();
|
|
}
|
|
}
|