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/cpuD3D11VertexBuffer.h"
|
2014-12-04 04:04:35 +00:00
|
|
|
#include "../far/error.h"
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#include <D3D11.h>
|
|
|
|
#include <cassert>
|
|
|
|
#include <string.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
|
|
|
CpuD3D11VertexBuffer::CpuD3D11VertexBuffer(int numElements, int numVertices)
|
2012-12-11 01:15:13 +00:00
|
|
|
: _numElements(numElements), _numVertices(numVertices),
|
|
|
|
_d3d11Buffer(NULL), _cpuBuffer(NULL) {
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer::~CpuD3D11VertexBuffer() {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
delete[] _cpuBuffer;
|
|
|
|
|
|
|
|
if (_d3d11Buffer) _d3d11Buffer->Release();
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer *
|
2015-04-27 18:27:05 +00:00
|
|
|
CpuD3D11VertexBuffer::Create(int numElements, int numVertices,
|
|
|
|
ID3D11DeviceContext *deviceContext) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer *instance =
|
2015-04-27 18:27:05 +00:00
|
|
|
new CpuD3D11VertexBuffer(numElements, numVertices);
|
|
|
|
ID3D11Device *device;
|
|
|
|
deviceContext->GetDevice(&device);
|
2012-12-11 01:15:13 +00:00
|
|
|
if (instance->allocate(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
|
|
|
CpuD3D11VertexBuffer::UpdateData(const float *src, int startVertex,
|
|
|
|
int numVertices,
|
|
|
|
void * /*deviceContext*/) {
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2015-04-27 18:27:05 +00:00
|
|
|
memcpy(_cpuBuffer + startVertex * _numElements, src,
|
|
|
|
_numElements * numVertices * sizeof(float));
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
int
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer::GetNumElements() const {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
return _numElements;
|
2012-08-04 02:51:27 +00:00
|
|
|
}
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
int
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer::GetNumVertices() const {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
return _numVertices;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
float*
|
2014-09-05 22:07:46 +00:00
|
|
|
CpuD3D11VertexBuffer::BindCpuBuffer() {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
return _cpuBuffer;
|
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
|
|
|
CpuD3D11VertexBuffer::BindD3D11Buffer(ID3D11DeviceContext *deviceContext) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
assert(deviceContext);
|
|
|
|
|
|
|
|
D3D11_MAPPED_SUBRESOURCE resource;
|
|
|
|
HRESULT hr = deviceContext->Map(_d3d11Buffer, 0,
|
|
|
|
D3D11_MAP_WRITE_DISCARD, 0, &resource);
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
if (FAILED(hr)) {
|
2014-12-04 04:04:35 +00:00
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR, "Fail to map buffer\n");
|
2012-12-11 01:15:13 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
int size = _numElements * _numVertices * sizeof(float);
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
memcpy(resource.pData, _cpuBuffer, size);
|
|
|
|
|
|
|
|
deviceContext->Unmap(_d3d11Buffer, 0);
|
|
|
|
|
|
|
|
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
|
|
|
CpuD3D11VertexBuffer::allocate(ID3D11Device *device) {
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
_cpuBuffer = new float[_numElements * _numVertices];
|
|
|
|
|
|
|
|
// XXX: should move this constructor to factory for error handling
|
|
|
|
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); // XXX ?
|
|
|
|
|
|
|
|
HRESULT hr;
|
|
|
|
hr = device->CreateBuffer(&hBufferDesc, NULL, &_d3d11Buffer);
|
|
|
|
if (FAILED(hr)) {
|
2014-12-04 04:04:35 +00:00
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR,
|
2012-12-11 01:15:13 +00:00
|
|
|
"Fail in CreateBuffer\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2012-06-21 00:11:17 +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
|
|
|
|