mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-18 23:42:17 +00:00
LibWeb: Generate WebGLRenderingContext implementation
This commit is contained in:
parent
45e0f50463
commit
e2e54dccc3
Notes:
github-actions[bot]
2024-12-03 22:37:17 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: e2e54dccc3
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2688
Reviewed-by: https://github.com/ADKaster ✅
10 changed files with 316 additions and 261 deletions
|
@ -853,6 +853,18 @@ invoke_generator(
|
|||
|
||||
generate_css_implementation()
|
||||
|
||||
invoke_generator(
|
||||
"WebGLRenderingContextImpl.cpp"
|
||||
Lagom::GenerateWebGLRenderingContext
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/WebGL/WebGLRenderingContextBase.idl"
|
||||
"WebGL/WebGLRenderingContextImpl.h"
|
||||
"WebGL/WebGLRenderingContextImpl.cpp"
|
||||
arguments -b "${CMAKE_CURRENT_SOURCE_DIR}" -b "${CMAKE_CURRENT_BINARY_DIR}" -i "${CMAKE_CURRENT_SOURCE_DIR}/WebGL/WebGLRenderingContext.idl"
|
||||
# NOTE: GeneratedCSSStyleProperties.idl is listed because it's transitively included by WebGLRenderingContextBase.idl
|
||||
# and we need to make sure it's generated before we generate the WebGLRenderingContext implementation.
|
||||
dependencies WebGL/WebGLRenderingContextBase.idl WebGL/WebGLRenderingContextOverloads.idl CSS/GeneratedCSSStyleProperties.idl
|
||||
)
|
||||
|
||||
set(GENERATED_SOURCES
|
||||
ARIA/AriaRoles.cpp
|
||||
CSS/DefaultStyleSheetSource.cpp
|
||||
|
@ -868,6 +880,7 @@ set(GENERATED_SOURCES
|
|||
CSS/TransformFunctions.cpp
|
||||
MathML/MathMLStyleSheetSource.cpp
|
||||
SVG/SVGStyleSheetSource.cpp
|
||||
WebGL/WebGLRenderingContextImpl.cpp
|
||||
Worker/WebWorkerClientEndpoint.h
|
||||
Worker/WebWorkerServerEndpoint.h
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue