| 79 | } |
| 80 | |
| 81 | void DynamicVertexBuffer::InitDesc(GPUBufferDescription& desc, int32 numElements) |
| 82 | { |
| 83 | desc = GPUBufferDescription::Vertex(_layout, _stride, numElements, GPUResourceUsage::Dynamic); |
| 84 | } |
| 85 | |
| 86 | void DynamicIndexBuffer::InitDesc(GPUBufferDescription& desc, int32 numElements) |
| 87 | { |
nothing calls this directly
no test coverage detected