mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-12-12 19:17:58 +00:00
Refact. Build flutter web (#7472)
* 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>
This commit is contained in:
20
flutter/lib/web/texture_rgba_renderer.dart
Normal file
20
flutter/lib/web/texture_rgba_renderer.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user