Home
last modified time | relevance | path

Searched refs:shIndirectCoefficients (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/
H A Drender_node_default_camera_controller.cpp952 constexpr size_t countOfSh = countof(envStruct.shIndirectCoefficients); in UpdateEnvironmentUniformBuffer()
955 envStruct.shIndirectCoefficients[jdx] = currEnv.shIndirectCoefficients[jdx]; in UpdateEnvironmentUniformBuffer()
959 envStruct.shIndirectCoefficients[jdx] = defaultSHIndirectCoefficients[jdx]; in UpdateEnvironmentUniformBuffer()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Drender_system.cpp455 … std::min(countof(component.irradianceCoefficients), countof(renderEnv.shIndirectCoefficients)); in FillRenderEnvironment()
457 … renderEnv.shIndirectCoefficients[idx] = Math::Vec4(component.irradianceCoefficients[idx], 1.0f); in FillRenderEnvironment()
509 for (size_t idx = 0; idx < countof(dynamicEnv.shIndirectCoefficients); ++idx) { in FillCameraRenderEnvironment()
510 dynamicEnv.shIndirectCoefficients[idx] = Math::Vec4(0.0f, 0.0f, 0.0f, 0.0f); in FillCameraRenderEnvironment()
517 for (size_t idx = 0; idx < countof(dynamicEnv.shIndirectCoefficients); ++idx) { in FillCameraRenderEnvironment()
518 dynamicEnv.shIndirectCoefficients[idx] = in FillCameraRenderEnvironment()
519 … LerpVec4(dynamicEnv.shIndirectCoefficients[idx], env.shIndirectCoefficients[idx], blendFactor); in FillCameraRenderEnvironment()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/render/
H A Drender_data_defines_3d.h447 BASE_NS::Math::Vec4 shIndirectCoefficients[RenderSceneDataConstants::MAX_SH_VEC3_COUNT]; member
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/assets/3d/shaders/shader/
H A Dcore3d_dm_fw_reflection_plane.frag71 return unpackIblIrradianceSH(worldNormalEnv, uEnvironmentData.shIndirectCoefficients) *
H A Dcore3d_dm_fullscreen_deferred_shading.frag125 return unpackIblIrradianceSH(worldNormalEnv, uEnvironmentData.shIndirectCoefficients) *
H A Dcore3d_dm_fw.frag72 return unpackIblIrradianceSH(worldNormalEnv, uEnvironmentData.shIndirectCoefficients) *
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/shaders/common/
H A D3d_dm_structures_common.h355 vec4 shIndirectCoefficients[CORE_DEFAULT_MATERIAL_MAX_SH_VEC3_VALUE_COUNT]; member