mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 04:44:59 +00:00

Framebuffer object is allocated using OpenGL's API and is not platform specific which means it could be used on both macOS and Linux unlike EGL specific PBuffer.
13 lines
166 B
C++
13 lines
166 B
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AccelGfx {
|
|
|
|
class Painter;
|
|
|
|
}
|