We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e15f3 commit 311e9f1Copy full SHA for 311e9f1
src/flutter/shell/platform/linux_embedded/public/flutter_platform_views.h
@@ -36,9 +36,9 @@ class FlutterDesktopPlatformView {
36
37
bool IsFocused() const { return focused_; }
38
39
- void SetTextureId(int texture_id) { texture_id_ = texture_id; }
+ void SetTextureId(int64_t texture_id) { texture_id_ = texture_id; }
40
41
- int GetTextureId() const { return texture_id_; }
+ int64_t GetTextureId() const { return texture_id_; }
42
43
virtual void Resize(double width, double height) = 0;
44
@@ -49,7 +49,7 @@ class FlutterDesktopPlatformView {
49
private:
50
flutter::PluginRegistrar* registrar_;
51
int view_id_;
52
- int texture_id_;
+ int64_t texture_id_;
53
bool focused_;
54
};
55
0 commit comments