Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: sony/flutter-embedded-linux

Tags

1881800949

Toggle 1881800949's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #434 from taka-okayama/master

Update contributing policy

1091508939

Toggle 1091508939's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #434 from taka-okayama/master

Update contributing policy

1425e5e9ec

Toggle 1425e5e9ec's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #434 from taka-okayama/master

Update contributing policy

cf56914b32

Toggle cf56914b32's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #434 from taka-okayama/master

Update contributing policy

82bd5b7209

Toggle 82bd5b7209's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
embedder: merge embedder.h from flutter/engine (#430)

Merged from https://github.com/flutter/engine/commits/3.27.0/shell/platform/embedder/embedder.h

Signed-off-by: Hidenori Matsubayashi <[email protected]>

e672b006cb

Toggle e672b006cb's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
embedder: merge embedder.h from flutter/engine (#430)

Merged from https://github.com/flutter/engine/commits/3.27.0/shell/platform/embedder/embedder.h

Signed-off-by: Hidenori Matsubayashi <[email protected]>

cb4b5fff73

Toggle cb4b5fff73's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
embedder: merge embedder.h from flutter/engine (#430)

Merged from https://github.com/flutter/engine/commits/3.27.0/shell/platform/embedder/embedder.h

Signed-off-by: Hidenori Matsubayashi <[email protected]>

83bacfc525

Toggle 83bacfc525's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Ensure FlutterDesktopViewControllerState declares default destructor (#…

…428)

types containing std::unique_ptr to incomplete types require a destructor to be
defined as the size is unavailable, otherwise the following error is raised at
compile time:

/usr/lib/gcc/aarch64-linux-gnu/13/../../../../include/c++/13/bits/unique_ptr.h:97:16: error: invalid application of 'sizeof' to an incomplete type 'flutter::FlutterELinuxView'
  91 |       _GLIBCXX23_CONSTEXPR
  92 |       void
  93 |       operator()(_Tp* __ptr) const
     |       `- note: in instantiation of member function 'std::default_delete<flutter::FlutterELinuxView>::operator()' requested here
  94 |       {
  95 | 	static_assert(!is_void<_Tp>::value,
  96 | 		      "can't delete pointer to incomplete type");
  97 | 	static_assert(sizeof(_Tp)>0,
     |                `- error: invalid application of 'sizeof' to an incomplete type 'flutter::FlutterELinuxView'
  98 | 		      "can't delete pointer to incomplete type");
  99 | 	delete __ptr;

Signed-off-by: Luke Howard <[email protected]>

a18df97ca5

Toggle a18df97ca5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Ensure FlutterDesktopViewControllerState declares default destructor (#…

…428)

types containing std::unique_ptr to incomplete types require a destructor to be
defined as the size is unavailable, otherwise the following error is raised at
compile time:

/usr/lib/gcc/aarch64-linux-gnu/13/../../../../include/c++/13/bits/unique_ptr.h:97:16: error: invalid application of 'sizeof' to an incomplete type 'flutter::FlutterELinuxView'
  91 |       _GLIBCXX23_CONSTEXPR
  92 |       void
  93 |       operator()(_Tp* __ptr) const
     |       `- note: in instantiation of member function 'std::default_delete<flutter::FlutterELinuxView>::operator()' requested here
  94 |       {
  95 | 	static_assert(!is_void<_Tp>::value,
  96 | 		      "can't delete pointer to incomplete type");
  97 | 	static_assert(sizeof(_Tp)>0,
     |                `- error: invalid application of 'sizeof' to an incomplete type 'flutter::FlutterELinuxView'
  98 | 		      "can't delete pointer to incomplete type");
  99 | 	delete __ptr;

Signed-off-by: Luke Howard <[email protected]>

db49896cf2

Toggle db49896cf2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Destroy textures on raster thread (#427)

* Destroy textures on raster thread

Signed-off-by: Bari Rao <[email protected]>

* Fix format

Signed-off-by: Bari Rao <[email protected]>

---------

Signed-off-by: Bari Rao <[email protected]>