• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2024 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "render_post_process_flare.h"
17 
18 #include <core/property_tools/property_api_impl.inl>
19 
20 using namespace BASE_NS;
21 using namespace CORE_NS;
22 using namespace RENDER_NS;
23 
24 CORE_BEGIN_NAMESPACE()
25 DATA_TYPE_METADATA(RenderPostProcessFlare::EffectProperties, MEMBER_PROPERTY(enabled, "Enabled", 0),
26     MEMBER_PROPERTY(flarePos, "Flare Position", 0), MEMBER_PROPERTY(intensity, "Effect Intensity", 0))
CORE_END_NAMESPACE()27 CORE_END_NAMESPACE()
28 
29 RENDER_BEGIN_NAMESPACE()
30 RenderPostProcessFlare::RenderPostProcessFlare()
31     : properties_(
32           &propertiesData_, array_view(PropertyType::DataType<RenderPostProcessFlare::EffectProperties>::properties))
33 {}
34 
GetProperties()35 CORE_NS::IPropertyHandle* RenderPostProcessFlare::GetProperties()
36 {
37     return properties_.GetData();
38 }
39 RENDER_END_NAMESPACE()
40