| 145 | } |
| 146 | |
| 147 | void Tr2RenderBatch::SetDrawIndexedInstanced( uint32_t indexCountPerInstance, uint32_t instanceCount, uint32_t startIndexLocation, uint32_t baseVertexLocation, uint32_t startInstanceLocation ) |
| 148 | { |
| 149 | m_indexCountPerInstance = indexCountPerInstance; |
| 150 | m_instanceCount = instanceCount; |
| 151 | m_startIndexLocation = startIndexLocation; |
| 152 | m_baseVertexLocation = baseVertexLocation; |
| 153 | m_startInstanceLocation = startInstanceLocation; |
| 154 | } |
| 155 | |
| 156 | void Tr2RenderBatch::SetDrawInstanced( uint32_t vertexCountPerInstance, uint32_t instanceCount, uint32_t startVertexLocation, uint32_t startInstanceLocation ) |
| 157 | { |
no outgoing calls
no test coverage detected