/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | asset_migration.cpp | 41 { PROPERTYTYPE(Math::UVec3), PropertyType::UVEC3_T }, // Math::UVec3 to BASE_NS::Math::UVec3 61 …{ PROPERTYTYPE_ARRAY(Math::UVec3), PropertyType::UVEC3_ARRAY_T }, // Math::UVec3 to BASE_NS::Math:…
|
H A D | json_util.h | 143 inline bool FromJson(const CORE_NS::json::value& jsonIn, BASE_NS::Math::UVec3& output) in FromJson() 207 inline CORE_NS::json::standalone_value ToJson<BASE_NS::Math::UVec3>(BASE_NS::Math::UVec3 value)
|
H A D | ecs_serializer.cpp | 466 …Serializer(PropertyType::UVEC3_T, Add(PropertyToJson<Math::UVec3>, PropertyFromJson<Math::UVec3>)); in SetDefaultSerializers()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/property/ |
H A D | property_types.h | 37 class UVec3; in BASE_BEGIN_NAMESPACE() local 94 inline constexpr PropertyTypeDecl UVEC3_T = PROPERTYTYPE(BASE_NS::Math::UVec3); 111 inline constexpr PropertyTypeDecl UVEC3_ARRAY_T = PROPERTYTYPE_ARRAY(BASE_NS::Math::UVec3);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | device_gles.h | 228 …ge, uint32_t target, uint32_t levels, uint32_t internalformat, const BASE_NS::Math::UVec3& extent); 234 …void TexSubImage3D(uint32_t image, uint32_t target, uint32_t level, const BASE_NS::Math::UVec3& of… 235 const BASE_NS::Math::UVec3& extent, uint32_t format, uint32_t type, const void* pixels); 238 …dTexSubImage3D(uint32_t image, uint32_t target, uint32_t level, const BASE_NS::Math::UVec3& offset, 239 const BASE_NS::Math::UVec3& extent, uint32_t format, uint32_t imageSize, const void* data);
|
H A D | shader_module_gles.cpp | 181 const Math::UVec3 tgs = createInfo.reflectionData.GetLocalSize(); in ProcessShaderModule()
|
H A D | device_gles.cpp | 1691 …uint32_t image, uint32_t target, uint32_t levels, uint32_t internalformat, const Math::UVec3& exte… in TexStorage3D() 1708 void DeviceGLES::TexSubImage3D(uint32_t image, uint32_t target, uint32_t level, const Math::UVec3& … in TexSubImage3D() 1709 const Math::UVec3& extent, uint32_t format, uint32_t type, const void* pixels) in TexSubImage3D() 1726 …CompressedTexSubImage3D(uint32_t image, uint32_t target, uint32_t level, const Math::UVec3& offset, in CompressedTexSubImage3D() 1727 const Math::UVec3& extent, uint32_t format, uint32_t imageSize, const void* data) in CompressedTexSubImage3D()
|
H A D | render_backend_gles.cpp | 409 … const Math::UVec3 imageSize { imageDesc.width >> mip, imageDesc.height >> mip, imageDesc.depth }; in BlitArray() 412 … const Math::UVec3 extent3D { Math::min(imageSize.x - offset.x, bufferImageCopy.imageExtent.width), in BlitArray() 420 const Math::UVec3 offset3D { offset.x, offset.y, layer }; in BlitArray() 464 …const Math::UVec3 imageSize { imageDesc.width >> mip, imageDesc.height >> mip, imageDesc.depth >> … in Blit3D() 465 … const Math::UVec3 offset { bufferImageCopy.imageOffset.width, bufferImageCopy.imageOffset.height, in Blit3D() 467 Math::UVec3 extent3D { Math::min(imageSize.x - offset.x, bufferImageCopy.imageExtent.width), in Blit3D() 473 const Math::UVec3 offset3D { offset.x, offset.y, slice }; in Blit3D()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/ecshelper/PropertyTools/ |
H A D | core_metadata.inl | 51 DECLARE_PROPERTY_TYPE(BASE_NS::Math::UVec3); 243 BEGIN_METADATA(UVec3MetaData, BASE_NS::Math::UVec3) 244 DECL_PROPERTY2(BASE_NS::Math::UVec3, x, "", 0) 245 DECL_PROPERTY2(BASE_NS::Math::UVec3, y, "", 0) 246 DECL_PROPERTY2(BASE_NS::Math::UVec3, z, "", 0) 247 END_METADATA(UVec3MetaData, BASE_NS::Math::UVec3)
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/ |
H A D | vector.h | 488 class UVec3 { in BASE_BEGIN_NAMESPACE() 501 inline constexpr UVec3() : data {} {} in BASE_BEGIN_NAMESPACE() 503 inline constexpr UVec3(uint32_t x, uint32_t y, uint32_t z) : x(x), y(y), z(z) {} in BASE_BEGIN_NAMESPACE() 504 ~UVec3() = default; in BASE_BEGIN_NAMESPACE() 519 constexpr bool operator==(const UVec3& rhs) const in BASE_BEGIN_NAMESPACE() 534 constexpr bool operator!=(const UVec3& rhs) const in BASE_BEGIN_NAMESPACE() 542 static_assert(sizeof(UVec3) == 3 * sizeof(uint32_t)); in BASE_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | register_value_serializers.cpp | 85 RegisterSerializer<BASE_NS::Math::UVec3>(data, vecExport, vecImport); in RegisterValueSerializers() 139 UnregisterSerializer<BASE_NS::Math::UVec3>(data); in UnRegisterValueSerializers()
|
H A D | register_engine_access.cpp | 46 BASE_NS::Math::UVec3,
|
H A D | register_anys.cpp | 53 BASE_NS::Math::UVec3,
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/shaders/common/ |
H A D | render_compatibility_common.h | 32 using uvec3 = BASE_NS::Math::UVec3;
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
H A D | property_util.cpp | 60 byteSize = sizeof(Math::UVec3); in GetPropertyTypeByteSize() 100 return PropertyType::MetaDataFrom<Math::UVec3>(nullptr); in GetMetaData() 412 Math::UVec3 val; in SetCustomPropertyBlobValue()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/datastore/ |
H A D | render_data_store_post_process.cpp | 104 Math::UVec3* val = reinterpret_cast<Math::UVec3*>(data + offset); in AppendValues() 110 Math::UVec3* val = reinterpret_cast<Math::UVec3*>(data + offset); in AppendValues()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/util/ |
H A D | property_util.cpp | 59 byteSize = sizeof(Math::UVec3); in GetPropertyTypeByteSize() 97 return PropertyType::MetaDataFrom<Math::UVec3>(nullptr); in GetMetaData() 409 Math::UVec3 val; in SetCustomPropertyBlobValue()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | shader_module_vk.cpp | 88 const Math::UVec3 tgs = createInfo.reflectionData.GetLocalSize(); in ShaderModuleVk()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/animation/ |
H A D | interpolator.cpp | 78 using Type = BASE_NS::Math::UVec3; 180 …{ UVec3Interpolator::OBJECT_INFO, UidFromType<BASE_NS::Math::UVec3>(), ClassId::UVec3Interpolator …
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/ |
H A D | meta_types.h | 225 META_TYPE(BASE_NS::Math::UVec3);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/node/ |
H A D | render_node_compute_generic.cpp | 172 const Math::UVec3 targetSize = { desc.width, desc.height, desc.depth }; in ExecuteFrame()
|
H A D | render_node_shader_passes_generic.cpp | 321 const Math::UVec3 targetSize = { desc.width, desc.height, desc.depth }; in ExecuteFrameCompute()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/serialization/ |
H A D | metav1_compat.cpp | 24 …BASE_NS::Math::IVec2, BASE_NS::Math::Vec3, BASE_NS::Math::UVec3, BASE_NS::Math::IVec3, BASE_NS::Ma…
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/ |
H A D | main.cpp | 512 struct UVec3 { struct 526 UVec3 GetLocalSize() const; argument 675 UVec3 ShaderReflectionData::GetLocalSize() const in GetLocalSize() 677 UVec3 sizes; in GetLocalSize()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/ |
H A D | shader_manager.h | 85 BASE_NS::Math::UVec3 GetLocalSize() const;
|