| 10 | |
| 11 | |
| 12 | struct Tr2ShaderBytecodeAL |
| 13 | { |
| 14 | Tr2ShaderBytecodeAL(); |
| 15 | Tr2ShaderBytecodeAL( const void* bytecode, size_t size ); |
| 16 | |
| 17 | template <typename T, size_t Size> |
| 18 | Tr2ShaderBytecodeAL( const T ( &bytecode_ )[Size] ) : |
| 19 | bytecode( bytecode_ ), |
| 20 | size( Size * sizeof( T ) ) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | ~Tr2ShaderBytecodeAL(); |
| 25 | |
| 26 | const void* bytecode; |
| 27 | size_t size; |
| 28 | }; |
| 29 | |
| 30 | |
| 31 | struct Tr2ShaderPipelineInputAL |
no outgoing calls