Home
last modified time | relevance | path

Searched refs:offsetPushConstants (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Dmain.cpp547 uint16_t offsetPushConstants; member
593 if (header.offsetPushConstants && header.offsetPushConstants < reflectionData.size()) { in GetPipelineLayout()
594 auto ptr = reflectionData.data() + header.offsetPushConstants; in GetPipelineLayout()
1257 uint16_t offsetPushConstants = 0; in reflectSpvBinary() local
1276 offsetPushConstants = static_cast<uint16_t>(reflection.size()); in reflectSpvBinary()
1352 *ptr++ = offsetPushConstants & 0xff; in reflectSpvBinary()
1353 *ptr++ = (offsetPushConstants >> 8) & 0xff; in reflectSpvBinary()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dshader_manager.cpp2133 uint16_t offsetPushConstants; member
2161 if (header.offsetPushConstants && header.offsetPushConstants < reflectionData.size()) { in GetPipelineLayout()
2162 auto ptr = reflectionData.data() + header.offsetPushConstants; in GetPipelineLayout()
2267 if (header.offsetPushConstants && header.offsetPushConstants < reflectionData.size()) { in GetPushConstants()
2268 const auto constants = *(reflectionData.data() + header.offsetPushConstants); in GetPushConstants()
2271 … ptr = reflectionData.data() + header.offsetPushConstants + sizeof(uint8_t) + sizeof(uint16_t); in GetPushConstants()