156 lines
5.8 KiB
C++
156 lines
5.8 KiB
C++
/*
|
|
* Copyright (c) 2018, Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/api/cl_types.h"
|
|
#include "runtime/helpers/base_object.h"
|
|
|
|
namespace OCLRT {
|
|
class Context;
|
|
struct HardwareInfo;
|
|
|
|
template <>
|
|
struct OpenCLObjectMapper<_cl_sampler> {
|
|
typedef class Sampler DerivedType;
|
|
};
|
|
|
|
union SamplerLodProperty {
|
|
cl_sampler_properties data;
|
|
float lod;
|
|
};
|
|
|
|
class Sampler : public BaseObject<_cl_sampler> {
|
|
public:
|
|
static const cl_ulong objectMagic = 0x4684913AC213EF00LL;
|
|
static const uint32_t samplerStateArrayAlignment = 64;
|
|
|
|
static Sampler *create(Context *context, cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode, cl_filter_mode filterMode,
|
|
cl_filter_mode mipFilterMode, float lodMin, float lodMax,
|
|
cl_int &errcodeRet);
|
|
|
|
static Sampler *create(Context *context, cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode, cl_filter_mode filterMode,
|
|
cl_int &errcodeRet) {
|
|
return Sampler::create(context, normalizedCoordinates, addressingMode, filterMode,
|
|
CL_FILTER_NEAREST, 0.0f, std::numeric_limits<float>::max(),
|
|
errcodeRet);
|
|
}
|
|
|
|
static Sampler *create(Context *context,
|
|
const cl_sampler_properties *samplerProperties,
|
|
cl_int &errcodeRet);
|
|
|
|
cl_int getInfo(cl_sampler_info paramName, size_t paramValueSize,
|
|
void *paramValue, size_t *paramValueSizeRet);
|
|
|
|
virtual void setArg(void *memory) = 0;
|
|
|
|
static size_t getSamplerStateSize(const HardwareInfo &hwInfo);
|
|
bool isTransformable() const;
|
|
|
|
Sampler(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode,
|
|
cl_filter_mode mipFilterMode,
|
|
float lodMin,
|
|
float lodMax);
|
|
|
|
Sampler(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode);
|
|
|
|
unsigned int getSnapWaValue() const;
|
|
|
|
cl_context context;
|
|
cl_bool normalizedCoordinates;
|
|
cl_addressing_mode addressingMode;
|
|
cl_filter_mode filterMode;
|
|
cl_filter_mode mipFilterMode;
|
|
float lodMin;
|
|
float lodMax;
|
|
};
|
|
|
|
template <typename GfxFamily>
|
|
struct SamplerHw : public Sampler {
|
|
void setArg(void *memory) override;
|
|
void appendSamplerStateParams(typename GfxFamily::SAMPLER_STATE *state);
|
|
static constexpr float getGenSamplerMaxLod() {
|
|
return 14.0f;
|
|
}
|
|
|
|
SamplerHw(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode,
|
|
cl_filter_mode mipFilterMode,
|
|
float lodMin,
|
|
float lodMax)
|
|
: Sampler(context, normalizedCoordinates, addressingMode, filterMode,
|
|
mipFilterMode, lodMin, lodMax) {
|
|
}
|
|
|
|
SamplerHw(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode)
|
|
: Sampler(context, normalizedCoordinates, addressingMode, filterMode) {
|
|
}
|
|
|
|
static Sampler *create(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode,
|
|
cl_filter_mode mipFilterMode,
|
|
float lodMin,
|
|
float lodMax) {
|
|
return new SamplerHw<GfxFamily>(context,
|
|
normalizedCoordinates,
|
|
addressingMode,
|
|
filterMode,
|
|
mipFilterMode,
|
|
lodMin,
|
|
lodMax);
|
|
}
|
|
|
|
static size_t getSamplerStateSize();
|
|
};
|
|
|
|
typedef Sampler *(*SamplerCreateFunc)(Context *context,
|
|
cl_bool normalizedCoordinates,
|
|
cl_addressing_mode addressingMode,
|
|
cl_filter_mode filterMode,
|
|
cl_filter_mode mipFilterMode,
|
|
float lodMin,
|
|
float lodMax);
|
|
|
|
typedef size_t (*getSamplerStateSizeHwFunc)();
|
|
|
|
template <>
|
|
inline Sampler *castToObject<Sampler>(const void *object) {
|
|
auto clSamplerObj = reinterpret_cast<const _cl_sampler *>(object);
|
|
return castToObject<Sampler>(const_cast<cl_sampler>(clSamplerObj));
|
|
}
|
|
} // namespace OCLRT
|