mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 22:08:59 +00:00
This is used to put together the list of supported WebGL extensions based on the available extensions, per-extension required extensions and WebGL version.
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGfx/Forward.h>
|
|
#include <LibGfx/Size.h>
|
|
|
|
namespace Web::WebGL {
|
|
|
|
class OpenGLContext {
|
|
public:
|
|
static OwnPtr<OpenGLContext> create(NonnullRefPtr<Gfx::SkiaBackendContext>);
|
|
|
|
void notify_content_will_change();
|
|
void clear_buffer_to_default_values();
|
|
void allocate_painting_surface_if_needed();
|
|
|
|
struct Impl;
|
|
OpenGLContext(NonnullRefPtr<Gfx::SkiaBackendContext>, Impl);
|
|
|
|
~OpenGLContext();
|
|
|
|
void make_current();
|
|
|
|
void set_size(Gfx::IntSize const&);
|
|
|
|
RefPtr<Gfx::PaintingSurface> surface();
|
|
|
|
u32 default_framebuffer() const;
|
|
u32 default_renderbuffer() const;
|
|
|
|
Vector<String> get_supported_extensions();
|
|
void request_extension(char const* extension_name);
|
|
|
|
private:
|
|
NonnullRefPtr<Gfx::SkiaBackendContext> m_skia_backend_context;
|
|
Gfx::IntSize m_size;
|
|
RefPtr<Gfx::PaintingSurface> m_painting_surface;
|
|
NonnullOwnPtr<Impl> m_impl;
|
|
Optional<Vector<String>> m_requestable_extensions;
|
|
};
|
|
|
|
}
|