TempImage
| 224 | |
| 225 | // TempImage |
| 226 | TempImage::TempImage(COpenCL& CL, const SImage& Img, cl_mem_flags flags) |
| 227 | : Image(CL, Img, nullptr, flags) |
| 228 | { } |
| 229 | |
| 230 | TempImage::TempImage(COpenCL& CL, SSize Size, SImage::EDataType Type, uint NbChannels, cl_mem_flags flags) |
| 231 | : Image(CL, TempSImage(Size, Type, NbChannels), nullptr, flags) |
nothing calls this directly
no test coverage detected