mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-28 04:09:00 +00:00
AK: Add Bitmap::is_null()
This class has a null state but there was no API to check for it.
This commit is contained in:
parent
c1c37cc5bd
commit
ddaeb294dc
Notes:
sideshowbarker
2024-07-18 21:44:01 +09:00
Author: https://github.com/awesomekling
Commit: ddaeb294dc
1 changed files with 2 additions and 0 deletions
|
@ -148,6 +148,8 @@ public:
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool is_null() const { return !m_data; }
|
||||||
|
|
||||||
u8* data() { return m_data; }
|
u8* data() { return m_data; }
|
||||||
const u8* data() const { return m_data; }
|
const u8* data() const { return m_data; }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue