Home
last modified time | relevance | path

Searched refs:imageExtent (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp413 Math::min(imageSize.y - offset.y, bufferImageCopy.imageExtent.height), in BlitArray()
414 Math::min(imageSize.z, bufferImageCopy.imageExtent.depth) }; in BlitArray()
442 const Math::UVec2 extent { Math::min(imageSize.x - offset.x, bufferImageCopy.imageExtent.width), in Blit2D()
443 Math::min(imageSize.y - offset.y, bufferImageCopy.imageExtent.height) }; in Blit2D()
467 Math::UVec3 extent3D { Math::min(imageSize.x - offset.x, bufferImageCopy.imageExtent.width), in Blit3D()
493 …const Math::UVec2 extent { bufferImageCopy.imageExtent.width, bufferImageCopy.imageExtent.height }; in BlitCube()
527 const auto& imageExtent = bufferImageCopy.imageExtent; in SetupBlit() local
545 const int64_t blockW = (imageExtent.width + (compinfo.blockW - 1)) / compinfo.blockW; in SetupBlit()
547 const int64_t blockH = (imageExtent.height + (compinfo.blockH - 1)) / compinfo.blockH; in SetupBlit()
558 bufferImageCopy.bufferRowLength, imageExtent.width); in SetupBlit()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/node/
H A Drender_staging.cpp75 { copy.imageExtent.width, copy.imageExtent.height, 1 }, in BlitScalingImage()
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/systemtest/
H A Dvulkan_loader_system_test.cpp393 swapchainCI.imageExtent = { width, height };
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Drender_backend_vk.cpp1623 const VkExtent3D imageExtent = { in RenderCommand() local
1624 Math::min(imageSize.width - imageOffset.width, bufferImageCopy.imageExtent.width), in RenderCommand()
1625 Math::min(imageSize.height - imageOffset.height, bufferImageCopy.imageExtent.height), in RenderCommand()
1626 Math::min(imageSize.depth - imageOffset.depth, bufferImageCopy.imageExtent.depth), in RenderCommand()
1637 imageExtent, in RenderCommand()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/
H A Dpipeline_state_desc.h935 Size3D imageExtent; member
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/swapchain_layer/
H A Dswapchain_layer.cpp765 if (SetWindowBufferGeometry(window, static_cast<int>(createInfo->imageExtent.width), in SetWindowInfo()
766 static_cast<int>(createInfo->imageExtent.height)) != VK_SUCCESS) { in SetWindowInfo()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dgpu_resource_manager.cpp269 …scale = (copies[0].imageExtent.width != desc.width) || (copies[0].imageExtent.height != desc.heigh… in GetScalingImageNeed()
297 const auto& extent = copies[0].imageExtent; in UpdateStagingScaling()
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/test/unittest/
H A Dvulkan_loader_unit_test.cpp172 swapchainCI.imageExtent = { width, height }; in GetSwapchainCreateInfo()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_importer.cpp2217 bufferCopy.imageExtent.width = loadedImageDesc.width; in PrepareImageData()
2218 bufferCopy.imageExtent.height = loadedImageDesc.height; in PrepareImageData()
2219 bufferCopy.imageExtent.depth = loadedImageDesc.depth; in PrepareImageData()