refact: texture render as an option (#8168)

* refact: texture render as an option

Signed-off-by: fufesou <linlong1266@gmail.com>

* refact: texture render, translation

Signed-off-by: fufesou <linlong1266@gmail.com>

* refact: texture render as option

Signed-off-by: fufesou <linlong1266@gmail.com>

* Update ui_interface.rs

---------

Signed-off-by: fufesou <linlong1266@gmail.com>
Co-authored-by: RustDesk <71636191+rustdesk@users.noreply.github.com>
This commit is contained in:
fufesou 2024-05-28 16:42:30 +08:00 committed by GitHub
parent 010b17509a
commit 72ec86b58d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
66 changed files with 481 additions and 282 deletions

View file

@ -1414,10 +1414,6 @@ class RustdeskImpl {
throw UnimplementedError();
}
bool mainHasPixelbufferTextureRender({dynamic hint}) {
return false;
}
bool mainHasFileClipboard({dynamic hint}) {
return false;
}
@ -1608,5 +1604,9 @@ class RustdeskImpl {
throw UnimplementedError();
}
bool mainGetUseTextureRender({dynamic hint}) {
throw UnimplementedError();
}
void dispose() {}
}