| 2041 | } |
| 2042 | |
| 2043 | ref<const ParameterBlockReflection> ProgramReflection::getParameterBlock(std::string_view name) const |
| 2044 | { |
| 2045 | if (name == "") |
| 2046 | return mpDefaultBlock; |
| 2047 | |
| 2048 | return mpDefaultBlock->getElementType()->findMember(name)->getType()->asResourceType()->getParameterBlockReflector(); |
| 2049 | } |
| 2050 | |
| 2051 | TypedShaderVarOffset ReflectionType::findMemberByOffset(size_t offset) const |
| 2052 | { |
nothing calls this directly
no test coverage detected