Files
compute-runtime/level_zero/core/source/sampler_imp.cpp
Jaime Arteaga fdcc07a121 More cleanup of Level Zero core API
Change-Id: Iad2118683efb4f5029503a8fec20d88b37d22e07
Signed-off: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
2020-03-10 13:40:46 -07:00

46 lines
1.0 KiB
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/core/source/sampler_imp.h"
#include "level_zero/core/source/device.h"
namespace L0 {
SamplerAllocatorFn samplerFactory[IGFX_MAX_PRODUCT] = {};
ze_result_t SamplerImp::destroy() {
delete this;
return ZE_RESULT_SUCCESS;
}
ze_result_t SamplerImp::initialize(Device *device, const ze_sampler_desc_t *desc) {
samplerDesc = *desc;
return ZE_RESULT_SUCCESS;
}
Sampler *Sampler::create(uint32_t productFamily, Device *device, const ze_sampler_desc_t *desc) {
SamplerAllocatorFn allocator = nullptr;
if (productFamily < IGFX_MAX_PRODUCT) {
allocator = samplerFactory[productFamily];
}
SamplerImp *sampler = nullptr;
if (allocator) {
sampler = static_cast<SamplerImp *>((*allocator)());
if (sampler->initialize(device, desc)) {
delete sampler;
DEBUG_BREAK_IF(true);
return nullptr;
}
}
return sampler;
}
} // namespace L0