| 21 | // == RenderTarget2D ============================================================================== |
| 22 | |
| 23 | RenderTarget2D::RenderTarget2D() : Width(0), |
| 24 | Height(0), |
| 25 | Format(DXGI_FORMAT_UNKNOWN), |
| 26 | NumMipLevels(0), |
| 27 | MultiSamples(0), |
| 28 | MSQuality(0), |
| 29 | AutoGenMipMaps(false), |
| 30 | UAView(nullptr), |
| 31 | ArraySize(1) |
| 32 | { |
| 33 | |
| 34 | } |
| 35 | |
| 36 | void RenderTarget2D::Initialize(ID3D11Device* device, |
| 37 | uint32 width, |
nothing calls this directly
no outgoing calls
no test coverage detected