| 1217 | } |
| 1218 | |
| 1219 | ProgramReflection::ProgramReflection(ProgramVersion const* pProgramVersion) : mpProgramVersion(pProgramVersion) |
| 1220 | { |
| 1221 | ref<ReflectionStructType> pGlobalStruct = ReflectionStructType::create(0, "", nullptr); |
| 1222 | |
| 1223 | ref<ParameterBlockReflection> pDefaultBlock = ParameterBlockReflection::createEmpty(pProgramVersion); |
| 1224 | pDefaultBlock->setElementType(pGlobalStruct); |
| 1225 | setDefaultParameterBlock(pDefaultBlock); |
| 1226 | } |
| 1227 | |
| 1228 | EntryPointGroupReflection::EntryPointGroupReflection(ProgramVersion const* pProgramVersion) : ParameterBlockReflection(pProgramVersion) {} |
| 1229 |
nothing calls this directly
no test coverage detected