mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 19:15:07 +00:00

We create a base class called GenericFramebufferDevice, which defines all the virtual functions that must be implemented by a FramebufferDevice. Then, we make the VirtIO FramebufferDevice and other FramebufferDevice implementations inherit from it. The most important consequence of rearranging the classes is that we now have one IOCTL method, so all drivers should be committed to not override the IOCTL method or make their own IOCTLs of FramebufferDevice. All graphical IOCTLs are known to all FramebufferDevices, and it's up to the specific implementation whether to support them or discard them (so we require extensive usage of KResult and KResultOr, together with virtual characteristic functions). As a result, the interface is much cleaner and understandable to read.
63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
#include <stddef.h>
|
|
#include <sys/cdefs.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
ALWAYS_INLINE int fb_get_properties(int fd, FBProperties* info)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_PROPERTIES, info);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_get_head_properties(int fd, FBHeadProperties* info)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_HEAD_PROPERTIES, info);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_get_resolution(int fd, FBHeadResolution* info)
|
|
{
|
|
FBHeadProperties head_properties;
|
|
head_properties.head_index = info->head_index;
|
|
if (auto rc = ioctl(fd, FB_IOCTL_GET_HEAD_PROPERTIES, &head_properties); rc < 0)
|
|
return rc;
|
|
info->head_index = head_properties.head_index;
|
|
info->pitch = head_properties.pitch;
|
|
info->width = head_properties.width;
|
|
info->height = head_properties.height;
|
|
return 0;
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_set_resolution(int fd, FBHeadResolution* info)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_SET_HEAD_RESOLUTION, info);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_get_head_vertical_offset_buffer(int fd, FBHeadVerticalOffset* vertical_offset)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_HEAD_VERITCAL_OFFSET_BUFFER, vertical_offset);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_set_head_vertical_offset_buffer(int fd, FBHeadVerticalOffset* vertical_offset)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_SET_HEAD_VERITCAL_OFFSET_BUFFER, vertical_offset);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_flush_buffers(int fd, int index, FBRect const* rects, unsigned count)
|
|
{
|
|
FBFlushRects fb_flush_rects;
|
|
fb_flush_rects.buffer_index = index;
|
|
fb_flush_rects.count = count;
|
|
fb_flush_rects.rects = rects;
|
|
return ioctl(fd, FB_IOCTL_FLUSH_HEAD_BUFFERS, &fb_flush_rects);
|
|
}
|
|
|
|
__END_DECLS
|