| 92 | } |
| 93 | |
| 94 | HWTexture::~HWTexture() |
| 95 | { |
| 96 | #if defined(TRACK_GPU_MEM) |
| 97 | dp::GPUMemTracker::Inst().RemoveDeallocated("Texture", m_textureID); |
| 98 | dp::GPUMemTracker::Inst().RemoveDeallocated("PBO", m_pixelBufferID); |
| 99 | #endif |
| 100 | } |
| 101 | |
| 102 | void HWTexture::Create(ref_ptr<dp::GraphicsContext> context, Params const & params) |
| 103 | { |
nothing calls this directly
no test coverage detected