| 1202 | } |
| 1203 | |
| 1204 | ref<const ProgramReflection> ProgramReflection::create( |
| 1205 | ProgramVersion const* pProgramVersion, |
| 1206 | slang::ShaderReflection* pSlangReflector, |
| 1207 | const std::vector<slang::EntryPointLayout*>& pSlangEntryPointReflectors, |
| 1208 | std::string& log |
| 1209 | ) |
| 1210 | { |
| 1211 | return ref<const ProgramReflection>(new ProgramReflection(pProgramVersion, pSlangReflector, pSlangEntryPointReflectors, log)); |
| 1212 | } |
| 1213 | |
| 1214 | void ProgramReflection::finalize() |
| 1215 | { |
nothing calls this directly
no test coverage detected