- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pixel copy to flip texture is too slow, WebPDecoderOptions.flip should be used, but how? #21
Comments
Oh I see, i will check source of that option.
…On Thu, 26 Mar 2020, 10:43 shunia, ***@***.***> wrote:
Pixel copy is blocking the main thread and consumes too much time, which
is not acceptable.
I tried with one of our webp animation file, and the overall performance
is something like:
libwebp decode: 230ms
flip upside down by pixel copy: 735ms
And because these all happened in the main thread, it freeze the app for
almost 1 secend.
And then I found this in project libwebp inside the 1.0.0 tag, which is
the exact version used by unity.webp:
// Decoding options
struct WebPDecoderOptions {
...
int flip; // flip output vertically
...
};
This flip option has been implemented to solve the upside down problem,
but how could I use this option? Please help.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#21>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACR2EOFMKP3B3PDUGB42QLRJKXMFANCNFSM4LT4FCOA>
.
|
I used function WebPAnimDecoderNewInternal But I failed to find insert WebPDecoderOptions option to there. So It seems need to write manually like this https://stackoverflow.com/a/28472740 . During weekends I will trying that again |
Possible solution here: #24 |
after merge, I fixed compile error then I realized |
Oh, I forgot to organize The And |
Pixel copy is blocking the main thread and consumes too much time, which is not acceptable.
I tried with one of our webp animation file, and the overall performance is something like:
And because these all happened in the main thread, it freeze the app for almost 1 secend.
And then I found this in project
libwebp
inside the1.0.0
tag, which is the exact version used byunity.webp
:This
flip
option has been implemented to solve the upside down problem, but how could I use this option? Please help.The text was updated successfully, but these errors were encountered: