mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-04 20:21:35 +08:00
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();
|
||
|
}
|
||
|
}
|