Home
last modified time | relevance | path

Searched refs:refl (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dshader_module_gles.cpp190 Gles::PushConstantReflection refl; in ProcessShaderModule() local
191 refl.type = read.GetUint32(); in ProcessShaderModule()
192 refl.offset = read.GetUint16(); in ProcessShaderModule()
193 refl.size = read.GetUint16(); in ProcessShaderModule()
194 refl.arraySize = read.GetUint16(); in ProcessShaderModule()
195 refl.arrayStride = read.GetUint16(); in ProcessShaderModule()
196 refl.matrixStride = read.GetUint16(); in ProcessShaderModule()
197 refl.name = "CORE_PC_0"; in ProcessShaderModule()
198 refl.name += read.GetStringView(); in ProcessShaderModule()
199 refl.stage = me.shaderStageFlags_; in ProcessShaderModule()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Dmain.cpp1282 for (const auto& refl : pushConstantReflection) { in reflectSpvBinary() local
1283 push(reflection, refl.type); in reflectSpvBinary()
1284 push(reflection, static_cast<uint16_t>(refl.offset)); in reflectSpvBinary()
1285 push(reflection, static_cast<uint16_t>(refl.size)); in reflectSpvBinary()
1286 push(reflection, static_cast<uint16_t>(refl.arraySize)); in reflectSpvBinary()
1287 push(reflection, static_cast<uint16_t>(refl.arrayStride)); in reflectSpvBinary()
1288 push(reflection, static_cast<uint16_t>(refl.matrixStride)); in reflectSpvBinary()
1289 push(reflection, static_cast<uint16_t>(refl.name.size())); in reflectSpvBinary()
1290 reflection.insert(reflection.end(), std::begin(refl.name), std::end(refl.name)); in reflectSpvBinary()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dshader_manager.cpp1457 const auto& refl = computeShaders_[arrayIndex].gsp->GetReflection(); in GetReflectionThreadGroupSize() local
1458 return { refl.threadGroupSizeX, refl.threadGroupSizeY, refl.threadGroupSizeZ }; in GetReflectionThreadGroupSize()