Home
last modified time | relevance | path

Searched refs:tgs (Results 1 - 6 of 6) sorted by relevance

/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dshader_module_vk.cpp88 const Math::UVec3 tgs = createInfo.reflectionData.GetLocalSize(); in ShaderModuleVk() local
89 stg_.x = tgs[0u]; in ShaderModuleVk()
90 stg_.y = tgs[1u]; in ShaderModuleVk()
91 stg_.z = tgs[2u]; in ShaderModuleVk()
H A Dgpu_program_vk.cpp104 const auto& tgs = mod.GetThreadGroupSize(); in GpuComputeProgramVk() local
105 reflection_.threadGroupSizeX = Math::max(1u, tgs.x); in GpuComputeProgramVk()
106 reflection_.threadGroupSizeY = Math::max(1u, tgs.y); in GpuComputeProgramVk()
107 reflection_.threadGroupSizeZ = Math::max(1u, tgs.z); in GpuComputeProgramVk()
/foundation/graphic/graphic_3d/lume/LumeRender/src/node/
H A Drender_bloom.cpp196 const ShaderThreadGroup tgs = psos_.downscaleAndThresholdTGS; local
210 cmdList.Dispatch((targetSize.x + tgs.x - 1) / tgs.x, (targetSize.y + tgs.y - 1) / tgs.y, 1);
216 const ShaderThreadGroup tgs = psos_.downscaleTGS; in ComputeDownscale() local
244 cmdList.Dispatch((targetSize.x + tgs.x - 1) / tgs.x, (targetSize.y + tgs.y - 1) / tgs in ComputeDownscale()
251 const ShaderThreadGroup tgs = psos_.upscaleTGS; ComputeUpscale() local
286 const ShaderThreadGroup tgs = psos_.combineTGS; ComputeCombine() local
[all...]
H A Drender_node_shader_passes_generic.cpp322 const ShaderThreadGroup tgs = shaderMgr.GetReflectionThreadGroupSize(shaderHandle); in ExecuteFrameCompute() local
323 cmdList.Dispatch((targetSize.x + tgs.x - 1u) / tgs.x, (targetSize.y + tgs.y - 1u) / tgs.y, in ExecuteFrameCompute()
324 (targetSize.z + tgs.z - 1u) / tgs.z); in ExecuteFrameCompute()
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dshader_module_gles.cpp181 const Math::UVec3 tgs = createInfo.reflectionData.GetLocalSize(); in ProcessShaderModule() local
182 me.stg_.x = tgs.x; in ProcessShaderModule()
183 me.stg_.y = tgs.y; in ProcessShaderModule()
184 me.stg_.z = tgs.z; in ProcessShaderModule()
H A Dgpu_program_gles.cpp707 const auto& tgs = plat_.module_->GetThreadGroupSize(); in GpuComputeProgramGLES() local
708 reflection_.threadGroupSizeX = Math::max(1u, tgs.x); in GpuComputeProgramGLES()
709 reflection_.threadGroupSizeY = Math::max(1u, tgs.y); in GpuComputeProgramGLES()
710 reflection_.threadGroupSizeZ = Math::max(1u, tgs.z); in GpuComputeProgramGLES()

Completed in 4 milliseconds