Files
rocm-systems/rocclr/runtime/platform/sampler.hpp
T
foreman 11dbd14b90 P4 to Git Change 1136253 by gandryey@gera-w8 on 2015/03/31 12:51:46
ECR #304775 - Mipmaps support in OCL
	- Add changes for the sampler usage with mipmaped images

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_sampler.cpp#5 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.cpp#504 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.hpp#141 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gslbe/src/rt/GSLDevice.cpp#113 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gslbe/src/rt/GSLDevice.h#46 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/sampler.hpp#7 edit
2015-03-31 13:06:05 -04:00

189 líneas
5.6 KiB
C++

//
// Copyright (c) 2008 Advanced Micro Devices, Inc. All rights reserved.
//
#ifndef SAMPLER_HPP_
#define SAMPLER_HPP_
#include "top.hpp"
#include "platform/object.hpp"
#include "device/device.hpp"
namespace amd
{
//! Abstraction layer sampler class
class Sampler : public RuntimeObject
{
public:
typedef std::map<Device const*, device::Sampler*> DeviceSamplers;
//! \note the sampler states must match the compiler's defines.
//! See amd_ocl_sys_predef.c
enum State
{
StateNormalizedCoordsFalse = 0x00,
StateNormalizedCoordsTrue = 0x01,
StateNormalizedCoordsMask = (StateNormalizedCoordsFalse |
StateNormalizedCoordsTrue),
StateAddressNone = 0x00,
StateAddressRepeat = 0x02,
StateAddressClampToEdge = 0x04,
StateAddressClamp = 0x06,
StateAddressMirroredRepeat = 0x08,
StateAddressMask = (StateAddressNone |
StateAddressRepeat |
StateAddressMirroredRepeat |
StateAddressClampToEdge |
StateAddressClamp),
StateFilterNearest = 0x10,
StateFilterLinear = 0x20,
StateFilterMask = (StateFilterNearest |
StateFilterLinear)
};
private:
Context& context_; //!< OpenCL context associated with this sampler
uint32_t state_; //!< Sampler state
uint mipFilter_; //!< mip filter
float minLod_; //!< min level of detail
float maxLod_; //!< max level of detail
DeviceSamplers deviceSamplers_; //!< Container for the device samplers
public:
Sampler(
Context& context, //!< OpenCL context
bool normCoords, //!< normalized coordinates
uint addrMode, //!< adressing mode
uint filterMode, //!< filter mode
uint mipFilterMode, //!< mip filter mode
float minLod, //!< min level of detail
float maxLod //!< max level of detail
)
: context_(context)
, mipFilter_(mipFilterMode)
, minLod_(minLod)
, maxLod_(maxLod)
{ // Packs the sampler state into uint32_t for kernel execution
state_ = 0;
// Set normalized state
if (normCoords) {
state_ |= StateNormalizedCoordsTrue;
}
else {
state_ |= StateNormalizedCoordsFalse;
}
// Program the sampler filter mode
if (filterMode == CL_FILTER_LINEAR) {
state_ |= StateFilterLinear;
}
else {
state_ |= StateFilterNearest;
}
// Program the sampler address mode
switch (addrMode) {
case CL_ADDRESS_CLAMP_TO_EDGE:
state_ |= StateAddressClampToEdge;
break;
case CL_ADDRESS_REPEAT:
state_ |= StateAddressRepeat;
break;
case CL_ADDRESS_CLAMP:
state_ |= StateAddressClamp;
break;
case CL_ADDRESS_MIRRORED_REPEAT:
state_ |= StateAddressMirroredRepeat;
break;
case CL_ADDRESS_NONE:
state_ |= StateAddressNone;
break;
default:
break;
}
}
virtual ~Sampler()
{
for (const auto& it : deviceSamplers_) {
delete it.second;
}
}
bool create()
{
for (uint i = 0; i < context_.devices().size(); ++i) {
device::Sampler* sampler = NULL;
Device* dev = context_.devices()[i];
if (!dev->createSampler(*this, &sampler)) {
return false;
}
deviceSamplers_[dev] = sampler;
}
return true;
}
device::Sampler* getDeviceSampler(const Device& dev) const
{
auto it = deviceSamplers_.find(&dev);
if (it != deviceSamplers_.end()) {
return it->second;
}
return NULL;
}
//! Accessor functions
Context& context() const { return context_; }
uint32_t state() const { return state_; }
uint mipFilter() const { return mipFilter_; }
float minLod() const { return minLod_; }
float maxLod() const { return maxLod_; }
bool normalizedCoords() const
{
return (state_ & StateNormalizedCoordsTrue) ? true : false;
}
uint addressingMode() const
{
uint adressing = 0;
// Program the sampler address mode
switch (state_ & StateAddressMask) {
case StateAddressRepeat:
adressing = CL_ADDRESS_REPEAT;
break;
case StateAddressClampToEdge:
adressing = CL_ADDRESS_CLAMP_TO_EDGE;
break;
case StateAddressClamp:
adressing = CL_ADDRESS_CLAMP;
break;
case StateAddressMirroredRepeat:
adressing = CL_ADDRESS_MIRRORED_REPEAT;
break;
case StateAddressNone:
adressing = CL_ADDRESS_NONE;
break;
default:
break;
}
return adressing;
}
uint filterMode() const
{
return ((state_ & StateFilterMask) == StateFilterNearest) ?
CL_FILTER_NEAREST : CL_FILTER_LINEAR;
}
//! RTTI internal implementation
virtual ObjectType objectType() const { return ObjectTypeSampler; }
};
} // namespace amd
#endif /*SAMPLER_HPP_*/