mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:37:45 +00:00
mmap all the font files!
Font now uses the same in-memory format as the font files we have on disk. This allows us to simply mmap() the font files and not use any additional memory for them. Very cool! :^) Hacking on this exposed a bug in file-backed VMObjects where the first client to instantiate a VMObject for a specific inode also got to decide its size. Since file-backed VMObjects always have the same size as the underlying file, this made no sense, so I removed the ability to even set a size in that case.
This commit is contained in:
parent
612c02307e
commit
a258d6507a
11 changed files with 134 additions and 110 deletions
|
@ -120,6 +120,16 @@ public:
|
|||
sti();
|
||||
}
|
||||
|
||||
void temporarily_cli()
|
||||
{
|
||||
cli();
|
||||
}
|
||||
|
||||
void temporarily_sti()
|
||||
{
|
||||
sti();
|
||||
}
|
||||
|
||||
private:
|
||||
dword m_flags;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue