Searched refs:tgs (Results 1 - 6 of 6) sorted by relevance
/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() local 89 stg_.x = tgs[0u]; in ShaderModuleVk() 90 stg_.y = tgs[1u]; in ShaderModuleVk() 91 stg_.z = tgs[2u]; in ShaderModuleVk()
|
H A D | gpu_program_vk.cpp | 104 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 D | render_bloom.cpp | 196 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 D | render_node_shader_passes_generic.cpp | 322 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 D | shader_module_gles.cpp | 181 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 D | gpu_program_gles.cpp | 707 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