mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
42 lines
827 B
C
42 lines
827 B
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_size_in_bytes(int fd, size_t* out)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_SIZE_IN_BYTES, out);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_get_resolution(int fd, FBResolution* info)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_RESOLUTION, info);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_set_resolution(int fd, FBResolution* info)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_SET_RESOLUTION, info);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_get_buffer(int fd, int* index)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_GET_BUFFER, index);
|
|
}
|
|
|
|
ALWAYS_INLINE int fb_set_buffer(int fd, int index)
|
|
{
|
|
return ioctl(fd, FB_IOCTL_SET_BUFFER, index);
|
|
}
|
|
|
|
__END_DECLS
|