Home
last modified time | relevance | path

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

/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 in ProcessShaderModule()
[all...]
/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Dmain.cpp1282 for (const auto& refl : pushConstantReflection) {
1283 push(reflection, refl.type);
1284 push(reflection, static_cast<uint16_t>(refl.offset));
1285 push(reflection, static_cast<uint16_t>(refl.size));
1286 push(reflection, static_cast<uint16_t>(refl.arraySize));
1287 push(reflection, static_cast<uint16_t>(refl.arrayStride));
1288 push(reflection, static_cast<uint16_t>(refl.matrixStride));
1289 push(reflection, static_cast<uint16_t>(refl.name.size()));
1290 reflection.insert(reflection.end(), std::begin(refl.name), std::end(refl
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dshader_manager.cpp1456 const auto& refl = computeShaders_[arrayIndex].gsp->GetReflection();
1457 return { refl.threadGroupSizeX, refl.threadGroupSizeY, refl.threadGroupSizeZ };

Completed in 6 milliseconds