2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Copyright 2013 Pixar
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
|
|
// with the following modification; you may not use this file except in
|
|
|
|
// compliance with the Apache License and the following modification to it:
|
|
|
|
// Section 6. Trademarks. is deleted and replaced with:
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 6. Trademarks. This License does not grant permission to use the trade
|
|
|
|
// names, trademarks, service marks, or product names of the Licensor
|
|
|
|
// and its affiliates, except as required to comply with Section 4(c) of
|
|
|
|
// the License and to reproduce the content of the NOTICE file.
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// You may obtain a copy of the Apache License at
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-18 21:19:50 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the Apache License with the above modification is
|
|
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
// KIND, either express or implied. See the Apache License for the specific
|
|
|
|
// language governing permissions and limitations under the Apache License.
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#include "../osd/clD3D11VertexBuffer.h"
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2015-04-27 18:27:05 +00:00
|
|
|
#include <cassert>
|
2012-12-11 01:15:13 +00:00
|
|
|
#include <D3D11.h>
|
|
|
|
#include <CL/cl_d3d11.h>
|
2015-04-27 18:27:05 +00:00
|
|
|
|
|
|
|
#include "../far/error.h"
|
2012-06-21 00:11:17 +00:00
|
|
|
|
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
namespace Osd {
|
|
|
|
|
2015-04-27 18:27:05 +00:00
|
|
|
CLD3D11VertexBuffer::CLD3D11VertexBuffer(int numElements, int numVertices)
|
2012-12-11 01:15:13 +00:00
|
|
|
: _numElements(numElements), _numVertices(numVertices),
|
|
|
|
_d3d11Buffer(NULL), _clMemory(NULL), _clQueue(NULL), _clMapped(false) {
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::~CLD3D11VertexBuffer() {
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
unmap();
|
|
|
|
clReleaseMemObject(_clMemory);
|
|
|
|
_d3d11Buffer->Release();
|
|
|
|
}
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer *
|
|
|
|
CLD3D11VertexBuffer::Create(int numElements, int numVertices,
|
2015-04-27 18:27:05 +00:00
|
|
|
cl_context clContext,
|
|
|
|
ID3D11DeviceContext *deviceContext) {
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer *instance =
|
2015-04-27 18:27:05 +00:00
|
|
|
new CLD3D11VertexBuffer(numElements, numVertices);
|
|
|
|
|
|
|
|
ID3D11Device *device;
|
|
|
|
deviceContext->GetDevice(&device);
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
if (instance->allocate(clContext, device)) return instance;
|
|
|
|
delete instance;
|
|
|
|
return NULL;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
void
|
2015-04-27 18:27:05 +00:00
|
|
|
CLD3D11VertexBuffer::UpdateData(const float *src, int startVertex,
|
|
|
|
int numVertices, cl_command_queue queue) {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-03-08 01:50:15 +00:00
|
|
|
size_t size = numVertices * _numElements * sizeof(float);
|
|
|
|
size_t offset = startVertex * _numElements * sizeof(float);
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
map(queue);
|
2013-03-08 01:50:15 +00:00
|
|
|
clEnqueueWriteBuffer(queue, _clMemory, true, offset, size, src, 0, NULL, NULL);
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
cl_mem
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::BindCLBuffer(cl_command_queue queue) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
map(queue);
|
|
|
|
return _clMemory;
|
2012-08-04 02:51:27 +00:00
|
|
|
}
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
ID3D11Buffer *
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::BindD3D11Buffer(ID3D11DeviceContext *deviceContext) {
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
unmap();
|
|
|
|
return _d3d11Buffer;
|
|
|
|
}
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
bool
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::allocate(cl_context clContext, ID3D11Device *device) {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
D3D11_BUFFER_DESC hBufferDesc;
|
|
|
|
hBufferDesc.ByteWidth = _numElements * _numVertices * sizeof(float);
|
|
|
|
hBufferDesc.Usage = D3D11_USAGE_DYNAMIC;
|
|
|
|
hBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER | D3D11_BIND_SHADER_RESOURCE;
|
|
|
|
hBufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
|
|
|
|
hBufferDesc.MiscFlags = 0;
|
|
|
|
hBufferDesc.StructureByteStride = sizeof(float);
|
|
|
|
|
|
|
|
HRESULT hr;
|
|
|
|
hr = device->CreateBuffer(&hBufferDesc, NULL, &_d3d11Buffer);
|
2015-04-27 18:27:05 +00:00
|
|
|
if (FAILED(hr)) {
|
2014-12-04 04:04:35 +00:00
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR, "Fail in CreateBuffer\n");
|
2012-12-11 01:15:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// register d3d11buffer as cl memory
|
|
|
|
cl_int err;
|
|
|
|
_clMemory = clCreateFromD3D11BufferKHR(clContext, CL_MEM_READ_WRITE, _d3d11Buffer, &err);
|
|
|
|
|
|
|
|
if (err != CL_SUCCESS) return false;
|
|
|
|
return true;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::map(cl_command_queue queue) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
if (_clMapped) return;
|
|
|
|
_clQueue = queue;
|
|
|
|
clEnqueueAcquireD3D11ObjectsKHR(queue, 1, &_clMemory, 0, 0, 0);
|
|
|
|
_clMapped = true;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
void
|
2014-09-05 22:07:46 +00:00
|
|
|
CLD3D11VertexBuffer::unmap() {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
if (not _clMapped) return;
|
2014-04-17 23:47:48 +00:00
|
|
|
clEnqueueReleaseD3D11ObjectsKHR(_clQueue, 1, &_clMemory, 0, 0, 0);
|
2012-12-11 01:15:13 +00:00
|
|
|
_clMapped = false;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
} // end namespace Osd
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
} // end namespace OpenSubdiv
|
2012-06-21 00:11:17 +00:00
|
|
|
|