1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 12:27:35 +00:00

Everywhere: Rename FB prefix structure names => Graphics

This commit is contained in:
Liav A 2022-04-30 14:54:46 +03:00 committed by Andreas Kling
parent d2e93ec50a
commit 10adc27eda
7 changed files with 40 additions and 40 deletions

View file

@ -204,7 +204,7 @@ ErrorOr<Parser> Parser::from_bytes(ByteBuffer&& bytes)
ErrorOr<Parser> Parser::from_framebuffer_device(int framebuffer_fd, size_t head)
{
RawBytes edid_bytes;
FBHeadEDID edid_info {};
GraphicsHeadEDID edid_info {};
edid_info.head_index = head;
edid_info.bytes = &edid_bytes[0];
edid_info.bytes_size = sizeof(edid_bytes);