P4 to Git Change 1131417 by gandryey@gera-w8 on 2015/03/17 10:31:57

ECR #304775 - Mipmaps support
	- Create views for the specified mip level in the transfer operations
	- OCL requires just one mip level transfer. Thus we could keep the original blit kernels and just create a view for the specified mip level.

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_memobj.cpp#75 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.cpp#500 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/memory.cpp#119 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/memory.hpp#90 edit
Этот коммит содержится в:
foreman
2015-03-17 10:53:04 -04:00
родитель 65421eb202
Коммит f20ddcf1ce
3 изменённых файлов: 44 добавлений и 17 удалений
+24 -3
Просмотреть файл
@@ -548,9 +548,12 @@ Pipe::initDeviceMemory()
context_().devices().size() * sizeof(DeviceMemory));
}
#define GETMIPDIM(dim, mip) (((dim >> mip) > 0) ? (dim >> mip) : 1)
Image::Image(
const Format& format,
Image& parent)
Image& parent,
uint baseMipLevel)
: Memory(parent, 0, 0, parent.getWidth() * parent.getHeight() *
parent.getDepth() * format.getElementSize())
, impl_(format, Coord3D(parent.getWidth() *
@@ -559,7 +562,22 @@ Image::Image(
parent.getDepth()), parent.getRowPitch(),
parent.getSlicePitch(), parent.getBytePitch())
, mipLevels_(1)
, baseMipLevel_(baseMipLevel)
{
if (baseMipLevel > 0) {
impl_.region_.c[0] = GETMIPDIM(parent.getWidth(), baseMipLevel) *
parent.getImageFormat().getElementSize() / format.getElementSize();
impl_.region_.c[1] = GETMIPDIM(parent.getHeight(), baseMipLevel);
impl_.region_.c[2] = GETMIPDIM(parent.getDepth(), baseMipLevel);
if (parent.getType() == CL_MEM_OBJECT_IMAGE1D_ARRAY) {
impl_.region_.c[1] = parent.getHeight();
}
else if (parent.getType() == CL_MEM_OBJECT_IMAGE2D_ARRAY) {
impl_.region_.c[2] = parent.getDepth();
}
size_ = getWidth() * getHeight() * parent.getDepth() * format.getElementSize();
}
initDimension();
}
@@ -577,6 +595,7 @@ Image::Image(
: Memory(context, type, flags, width * height * depth * format.getElementSize())
, impl_(format, Coord3D(width, height, depth), rowPitch, slicePitch)
, mipLevels_(mipLevels)
, baseMipLevel_(0)
{
initDimension();
}
@@ -594,6 +613,7 @@ Image::Image(
: Memory(buffer, flags, 0, buffer.getSize(), type)
, impl_(format, Coord3D(width, height, depth), rowPitch, slicePitch)
, mipLevels_(1)
, baseMipLevel_(0)
{
initDimension();
}
@@ -1158,12 +1178,13 @@ Image*
Image::createView(
const Context& context,
const Format& format,
device::VirtualDevice* vDev)
device::VirtualDevice* vDev,
uint baseMipLevel)
{
Image* view = NULL;
// Find the image dimensions and create a corresponding object
view = new (context) Image(format, *this);
view = new (context) Image(format, *this, baseMipLevel);
// Set GPU virtual device for this view
view->setVirtualDevice(vDev);