mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 08:33:19 +00:00
24 lines
403 B
C++
24 lines
403 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <AK/OwnPtr.h>
|
||
|
#include <LibGfx/Bitmap.h>
|
||
|
#include <LibWeb/WebGL/OpenGLContext.h>
|
||
|
|
||
|
namespace Web::WebGL {
|
||
|
|
||
|
OwnPtr<OpenGLContext> OpenGLContext::create(Gfx::Bitmap& bitmap)
|
||
|
{
|
||
|
(void)bitmap;
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
void OpenGLContext::clear_buffer_to_default_values()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|