| 48 | } |
| 49 | |
| 50 | const XferProcessor* ProgramInfo::getXferProcessor() const { |
| 51 | if (xferProcessor == nullptr) { |
| 52 | return EmptyXferProcessor::GetInstance(); |
| 53 | } |
| 54 | return xferProcessor; |
| 55 | } |
| 56 | |
| 57 | const Swizzle& ProgramInfo::getOutputSwizzle() const { |
| 58 | auto context = renderTarget->getContext(); |
no outgoing calls
no test coverage detected