Add Chromium-only Blender WebEngine parity work

This commit is contained in:
mes123456
2026-08-12 04:47:48 -04:00
commit 9fd26010f6
18225 changed files with 11622124 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
/* SPDX-FileCopyrightText: 2024 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
@SVG_CURSORS_CONTENTS_H@
#ifdef __cplusplus
}
#endif

View File

@@ -0,0 +1,12 @@
#include "svg_icons.h"
#include "UI_resources.hh"
const char *blf_get_icon_svg(int icon)
{
switch (icon)
{
@SVG_CONTENTS_C@
default:
return datatoc_none_svg;
}
}

View File

@@ -0,0 +1,13 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
const char *blf_get_icon_svg(int icon);
@SVG_CONTENTS_H@
#ifdef __cplusplus
}
#endif