1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

LibAccelGfx+LibWeb: Use framebuffer object instead of EGLs PBuffer

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.
This commit is contained in:
Aliaksandr Kalenik 2023-11-11 17:34:44 +01:00 committed by Andreas Kling
parent 99caf4e649
commit 6d1a1daff9
12 changed files with 70 additions and 132 deletions

View file

@ -6,7 +6,6 @@
#pragma once
#include <LibAccelGfx/Canvas.h>
#include <LibAccelGfx/Painter.h>
#include <LibWeb/Painting/RecordingPainter.h>