mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-04 15:19:42 +00:00
LibDraw: Make [gs]et_pixel arguments used
This commit is contained in:
parent
9143208419
commit
f5ecb31fc8
Notes:
sideshowbarker
2024-07-19 09:37:56 +09:00
Author: https://github.com/jcs
Commit: f5ecb31fc8
Pull-request: https://github.com/SerenityOS/serenity/pull/1177
1 changed files with 4 additions and 0 deletions
|
@ -102,6 +102,8 @@ public:
|
||||||
template<Format>
|
template<Format>
|
||||||
Color get_pixel(int x, int y) const
|
Color get_pixel(int x, int y) const
|
||||||
{
|
{
|
||||||
|
(void)x;
|
||||||
|
(void)y;
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,6 +117,8 @@ public:
|
||||||
template<Format>
|
template<Format>
|
||||||
void set_pixel(int x, int y, Color)
|
void set_pixel(int x, int y, Color)
|
||||||
{
|
{
|
||||||
|
(void)x;
|
||||||
|
(void)y;
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue