| 157 | } |
| 158 | |
| 159 | void SetValueGpuBuffer( ITr2GpuBuffer * &value ) |
| 160 | { |
| 161 | CCP_ASSERT( m_type == GetVariableType( value ) ); |
| 162 | m_gpuBuffer = value; |
| 163 | m_type = TRIVARIABLE_GPUBUFFER; |
| 164 | } |
| 165 | |
| 166 | // Variables contain their payload starting at 'value'[0]. No size is |
| 167 | // stored since 'type' is enough. |
no test coverage detected