mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibWeb: Alphabetize WebGL type list in generator
This commit is contained in:
parent
9c24bb3cee
commit
7868b03d90
Notes:
github-actions[bot]
2024-12-06 14:36:46 +00:00
Author: https://github.com/ADKaster
Commit: 7868b03d90
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2809
Reviewed-by: https://github.com/kalenikaliaksandr ✅
1 changed files with 2 additions and 2 deletions
|
@ -15,11 +15,11 @@
|
|||
|
||||
static bool is_webgl_object_type(StringView type_name)
|
||||
{
|
||||
return type_name == "WebGLShader"sv
|
||||
|| type_name == "WebGLBuffer"sv
|
||||
return type_name == "WebGLBuffer"sv
|
||||
|| type_name == "WebGLFramebuffer"sv
|
||||
|| type_name == "WebGLProgram"sv
|
||||
|| type_name == "WebGLRenderbuffer"sv
|
||||
|| type_name == "WebGLShader"sv
|
||||
|| type_name == "WebGLTexture"sv
|
||||
|| type_name == "WebGLUniformLocation"sv;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue