Add Chromium-only Blender WebEngine parity work
This commit is contained in:
1090
blender-5.2.0/source/blender/editors/datafiles/CMakeLists.txt
Normal file
1090
blender-5.2.0/source/blender/editors/datafiles/CMakeLists.txt
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user