mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
LibWeb: Implement WebGL2 getQuery
This commit is contained in:
Notes:
github-actions[bot]
2026-02-06 10:40:13 +00:00
Author: https://github.com/cqundefine Commit: https://github.com/LadybirdBrowser/ladybird/commit/59e73a9de90 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6978 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/konradekk
@@ -22,6 +22,7 @@ extern "C" {
|
||||
#include <LibWeb/WebGL/WebGLBuffer.h>
|
||||
#include <LibWeb/WebGL/WebGLFramebuffer.h>
|
||||
#include <LibWeb/WebGL/WebGLProgram.h>
|
||||
#include <LibWeb/WebGL/WebGLQuery.h>
|
||||
#include <LibWeb/WebGL/WebGLRenderbuffer.h>
|
||||
#include <LibWeb/WebGL/WebGLRenderingContextImpl.h>
|
||||
#include <LibWeb/WebGL/WebGLSampler.h>
|
||||
@@ -2376,6 +2377,9 @@ void WebGLRenderingContextImpl::visit_edges(JS::Cell::Visitor& visitor)
|
||||
visitor.visit(m_pixel_pack_buffer_binding);
|
||||
visitor.visit(m_pixel_unpack_buffer_binding);
|
||||
visitor.visit(m_current_vertex_array);
|
||||
visitor.visit(m_any_samples_passed);
|
||||
visitor.visit(m_any_samples_passed_conservative);
|
||||
visitor.visit(m_transform_feedback_primitives_written);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user