mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
LibWeb/WebGL: Request GL_ANGLE_instanced_arrays extension when required
This commit is contained in:
parent
1156fe483d
commit
58942e1137
Notes:
github-actions[bot]
2025-01-21 20:38:07 +00:00
Author: https://github.com/Lubrsi
Commit: 58942e1137
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3239
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/kalenikaliaksandr
4 changed files with 32 additions and 5 deletions
|
@ -8,6 +8,8 @@
|
|||
#include <LibWeb/Bindings/ANGLEInstancedArraysPrototype.h>
|
||||
#include <LibWeb/Bindings/Intrinsics.h>
|
||||
#include <LibWeb/WebGL/ANGLEInstancedArrays.h>
|
||||
#include <LibWeb/WebGL/OpenGLContext.h>
|
||||
#include <LibWeb/WebGL/WebGLRenderingContext.h>
|
||||
|
||||
#define GL_GLEXT_PROTOTYPES 1
|
||||
#include <GLES2/gl2.h>
|
||||
|
@ -17,28 +19,33 @@ namespace Web::WebGL {
|
|||
|
||||
GC_DEFINE_ALLOCATOR(ANGLEInstancedArrays);
|
||||
|
||||
JS::ThrowCompletionOr<GC::Ptr<ANGLEInstancedArrays>> ANGLEInstancedArrays::create(JS::Realm& realm)
|
||||
JS::ThrowCompletionOr<GC::Ptr<ANGLEInstancedArrays>> ANGLEInstancedArrays::create(JS::Realm& realm, GC::Ref<WebGLRenderingContext> context)
|
||||
{
|
||||
return realm.create<ANGLEInstancedArrays>(realm);
|
||||
return realm.create<ANGLEInstancedArrays>(realm, context);
|
||||
}
|
||||
|
||||
ANGLEInstancedArrays::ANGLEInstancedArrays(JS::Realm& realm)
|
||||
ANGLEInstancedArrays::ANGLEInstancedArrays(JS::Realm& realm, GC::Ref<WebGLRenderingContext> context)
|
||||
: PlatformObject(realm)
|
||||
, m_context(context)
|
||||
{
|
||||
m_context->context().request_extension("GL_ANGLE_instanced_arrays");
|
||||
}
|
||||
|
||||
void ANGLEInstancedArrays::vertex_attrib_divisor_angle(GLuint index, GLuint divisor)
|
||||
{
|
||||
m_context->context().make_current();
|
||||
glVertexAttribDivisorANGLE(index, divisor);
|
||||
}
|
||||
|
||||
void ANGLEInstancedArrays::draw_arrays_instanced_angle(GLenum mode, GLint first, GLsizei count, GLsizei primcount)
|
||||
{
|
||||
m_context->context().make_current();
|
||||
glDrawArraysInstancedANGLE(mode, first, count, primcount);
|
||||
}
|
||||
|
||||
void ANGLEInstancedArrays::draw_elements_instanced_angle(GLenum mode, GLsizei count, GLenum type, GLintptr offset, GLsizei primcount)
|
||||
{
|
||||
m_context->context().make_current();
|
||||
glDrawElementsInstancedANGLE(mode, count, type, reinterpret_cast<void*>(offset), primcount);
|
||||
}
|
||||
|
||||
|
@ -48,4 +55,10 @@ void ANGLEInstancedArrays::initialize(JS::Realm& realm)
|
|||
WEB_SET_PROTOTYPE_FOR_INTERFACE(ANGLEInstancedArrays);
|
||||
}
|
||||
|
||||
void ANGLEInstancedArrays::visit_edges(Visitor& visitor)
|
||||
{
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_context);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue