| 306 | // == RWBuffer ==================================================================================== |
| 307 | |
| 308 | RWBuffer::RWBuffer() : Size(0), Stride(0), NumElements(0), Format(DXGI_FORMAT_UNKNOWN), RawBuffer(false) |
| 309 | { |
| 310 | |
| 311 | } |
| 312 | |
| 313 | void RWBuffer::Initialize(ID3D11Device* device, DXGI_FORMAT format, uint32 stride, uint32 numElements, |
| 314 | bool32 rawBuffer, bool vertexBuffer, bool indexBuffer, bool indirectArgs, |
nothing calls this directly
no outgoing calls
no test coverage detected