mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Implement WebGL getVertexAttrib
This also implements all allowed parameter name values for this function.
This commit is contained in:
parent
2d8b393c76
commit
a2c659ee6b
Notes:
github-actions[bot]
2025-11-01 23:55:22 +00:00
Author: https://github.com/cqundefine
Commit: a2c659ee6b
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6663
Reviewed-by: https://github.com/gmta ✅
10 changed files with 134 additions and 1 deletions
|
|
@ -283,6 +283,11 @@ bool WebGLRenderingContext::ext_texture_filter_anisotropic_extension_enabled() c
|
|||
return !!m_ext_texture_filter_anisotropic;
|
||||
}
|
||||
|
||||
bool WebGLRenderingContext::angle_instanced_arrays_extension_enabled() const
|
||||
{
|
||||
return !!m_angle_instanced_arrays_extension;
|
||||
}
|
||||
|
||||
ReadonlySpan<WebIDL::UnsignedLong> WebGLRenderingContext::enabled_compressed_texture_formats() const
|
||||
{
|
||||
return m_enabled_compressed_texture_formats;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue