-
Notifications
You must be signed in to change notification settings - Fork 2
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
Reduce Waddy RAM usage #11
Comments
It seems like this is where the issue comes from gchimp/src/gui/programs/waddy.rs Lines 879 to 900 in 4e6a372
|
After some investigations, I have missed something fairly simple, the textures are stored as RGBA8 in memory. For a 1000 512x512 WAD file, it requires at least 750MB of RAM to store them. So I guess the behavior should be expected. Recently, I have tried out A possible rewrite of gchimp-native under iced is considered. |
Right now, it should use 2*n RAM because
Waddy
instance has WAD file data andFor some reasons, it is 4*n now. Maybe
impl Drop
?The text was updated successfully, but these errors were encountered: