/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/ThirdParty/RmlUi/Source/Core/EffectSpecification.cpp
25 строк
790 B
C-Core
Updated RmlUi to 6.2 and added some improvements (#1813)
10 фев 2026, 01:19
Не верифицирован
10 фев 2026, 01:19
58e2d41
Код
Авторство
О чём код?
#include "../../Include/RmlUi/Core/EffectSpecification.h" #include "../../Include/RmlUi/Core/PropertyDefinition.h" namespace Rml { EffectSpecification::EffectSpecification() : properties(10, 10) {} EffectSpecification::~EffectSpecification() {} const PropertySpecification& EffectSpecification::GetPropertySpecification() const { return properties; } PropertyDefinition& EffectSpecification::RegisterProperty(const String& property_name, const String& default_value) { return properties.RegisterProperty(property_name, default_value, false, false); } ShorthandId EffectSpecification::RegisterShorthand(const String& shorthand_name, const String& property_names, ShorthandType type) { return properties.RegisterShorthand(shorthand_name, property_names, type); } } // namespace Rml