2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Copyright 2013 Pixar
|
2013-07-18 21:19:50 +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
|
2012-08-04 02:51:27 +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/clGLVertexBuffer.h"
|
2012-06-21 00:11:17 +00:00
|
|
|
|
2013-06-10 22:54:40 +00:00
|
|
|
#include "../osd/opengl.h"
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#include <cassert>
|
2012-06-21 00:11:17 +00:00
|
|
|
|
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
OsdCLGLVertexBuffer::OsdCLGLVertexBuffer(int numElements,
|
|
|
|
int numVertices,
|
|
|
|
cl_context clContext)
|
|
|
|
: _numElements(numElements), _numVertices(numVertices),
|
2013-01-18 21:30:31 +00:00
|
|
|
_vbo(0), _clQueue(0), _clMemory(0), _clMapped(false) {
|
2012-06-21 00:11:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
OsdCLGLVertexBuffer::~OsdCLGLVertexBuffer() {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
unmap();
|
|
|
|
clReleaseMemObject(_clMemory);
|
|
|
|
glDeleteBuffers(1, &_vbo);
|
|
|
|
}
|
|
|
|
|
|
|
|
OsdCLGLVertexBuffer *
|
|
|
|
OsdCLGLVertexBuffer::Create(int numElements, int numVertices, cl_context clContext)
|
|
|
|
{
|
|
|
|
OsdCLGLVertexBuffer *instance =
|
|
|
|
new OsdCLGLVertexBuffer(numElements, numVertices, clContext);
|
|
|
|
if (instance->allocate(clContext)) return instance;
|
|
|
|
delete instance;
|
|
|
|
return NULL;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-04 02:51:27 +00:00
|
|
|
void
|
2013-03-08 01:50:15 +00:00
|
|
|
OsdCLGLVertexBuffer::UpdateData(const float *src, int startVertex, int numVertices, cl_command_queue queue) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2013-01-30 07:42:20 +00:00
|
|
|
size_t size = numVertices * _numElements * sizeof(float);
|
2013-03-08 01:50:15 +00:00
|
|
|
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
|
|
|
int
|
|
|
|
OsdCLGLVertexBuffer::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
|
|
|
|
OsdCLGLVertexBuffer::GetNumVertices() const {
|
|
|
|
|
|
|
|
return _numVertices;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
cl_mem
|
|
|
|
OsdCLGLVertexBuffer::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-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
GLuint
|
|
|
|
OsdCLGLVertexBuffer::BindVBO() {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
unmap();
|
|
|
|
return _vbo;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
bool
|
|
|
|
OsdCLGLVertexBuffer::allocate(cl_context clContext) {
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
assert(clContext);
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
// create GL buffer first
|
|
|
|
int size = _numElements * _numVertices * sizeof(float);
|
|
|
|
GLint prev = 0;
|
|
|
|
|
|
|
|
glGetIntegerv(GL_ARRAY_BUFFER_BINDING, &prev);
|
|
|
|
glGenBuffers(1, &_vbo);
|
2012-06-21 00:11:17 +00:00
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, _vbo);
|
2012-12-11 01:15:13 +00:00
|
|
|
glBufferData(GL_ARRAY_BUFFER, size, 0, GL_STREAM_DRAW);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, prev);
|
2012-08-04 02:51:27 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
if (glGetError() != GL_NO_ERROR) return false;
|
|
|
|
|
|
|
|
// register vbo as cl memory
|
|
|
|
cl_int err;
|
|
|
|
_clMemory = clCreateFromGLBuffer(clContext,
|
|
|
|
CL_MEM_READ_WRITE, _vbo, &err);
|
|
|
|
|
|
|
|
if (err != CL_SUCCESS) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OsdCLGLVertexBuffer::map(cl_command_queue queue) {
|
|
|
|
|
|
|
|
if (_clMapped) return; // XXX: what if another queue is given?
|
|
|
|
_clQueue = queue;
|
|
|
|
clEnqueueAcquireGLObjects(queue, 1, &_clMemory, 0, 0, 0);
|
|
|
|
_clMapped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OsdCLGLVertexBuffer::unmap() {
|
|
|
|
|
|
|
|
if (not _clMapped) return;
|
|
|
|
clEnqueueReleaseGLObjects(_clQueue, 1, &_clMemory, 0, 0, 0);
|
|
|
|
_clMapped = false;
|
2012-06-21 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
} // end namespace OpenSubdiv
|
2012-06-21 00:11:17 +00:00
|
|
|
|