| 56 | } |
| 57 | |
| 58 | ALResult Tr2ShaderAL::GetBytecode( Tr2ShaderBytecodeAL& bytecode ) const |
| 59 | { |
| 60 | if( m_bytecode.empty() ) |
| 61 | { |
| 62 | bytecode = Tr2ShaderBytecodeAL(); |
| 63 | return E_INVALIDCALL; |
| 64 | } |
| 65 | bytecode.bytecode = m_bytecode.get(); |
| 66 | bytecode.size = m_bytecode.size(); |
| 67 | return S_OK; |
| 68 | } |
| 69 | |
| 70 | const Tr2ShaderSignatureAL& Tr2ShaderAL::GetSignature() const |
| 71 | { |
nothing calls this directly
no test coverage detected