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