2015-05-09 00:31:26 +00:00
|
|
|
//
|
|
|
|
// Copyright 2015 Pixar
|
|
|
|
//
|
|
|
|
// 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:
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// You may obtain a copy of the Apache License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "../osd/glXFBEvaluator.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include "../far/error.h"
|
2015-05-22 18:50:01 +00:00
|
|
|
#include "../far/stencilTable.h"
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
#if _MSC_VER
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
|
|
|
namespace Osd {
|
|
|
|
|
|
|
|
static const char *shaderSource =
|
|
|
|
#include "../osd/glslXFBKernel.gen.h"
|
|
|
|
;
|
|
|
|
|
|
|
|
template <class T> GLuint
|
|
|
|
createGLTextureBuffer(std::vector<T> const & src, GLenum type) {
|
|
|
|
GLint size = static_cast<int>(src.size()*sizeof(T));
|
|
|
|
void const * ptr = &src.at(0);
|
|
|
|
|
|
|
|
GLuint buffer;
|
|
|
|
glGenBuffers(1, &buffer);
|
|
|
|
|
|
|
|
GLuint devicePtr;
|
|
|
|
glGenTextures(1, &devicePtr);
|
|
|
|
|
|
|
|
#if defined(GL_EXT_direct_state_access)
|
|
|
|
if (glNamedBufferDataEXT && glTextureBufferEXT) {
|
|
|
|
glNamedBufferDataEXT(buffer, size, ptr, GL_STATIC_DRAW);
|
|
|
|
glTextureBufferEXT(devicePtr, GL_TEXTURE_BUFFER, type, buffer);
|
|
|
|
} else {
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
GLint prev = 0;
|
|
|
|
|
|
|
|
glGetIntegerv(GL_ARRAY_BUFFER_BINDING, &prev);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, buffer);
|
|
|
|
glBufferData(GL_ARRAY_BUFFER, size, ptr, GL_STATIC_DRAW);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, prev);
|
|
|
|
|
|
|
|
glGetIntegerv(GL_TEXTURE_BINDING_BUFFER, &prev);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, devicePtr);
|
|
|
|
glTexBuffer(GL_TEXTURE_BUFFER, type, buffer);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, prev);
|
|
|
|
}
|
|
|
|
|
|
|
|
glDeleteBuffers(1, &buffer);
|
|
|
|
|
|
|
|
return devicePtr;
|
|
|
|
}
|
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
GLStencilTableTBO::GLStencilTableTBO(
|
|
|
|
Far::StencilTable const *stencilTable) {
|
2015-05-09 00:31:26 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
_numStencils = stencilTable->GetNumStencils();
|
2015-05-09 00:31:26 +00:00
|
|
|
if (_numStencils > 0) {
|
2015-05-22 18:50:01 +00:00
|
|
|
_sizes = createGLTextureBuffer(stencilTable->GetSizes(), GL_R32UI);
|
2015-05-09 00:31:26 +00:00
|
|
|
_offsets = createGLTextureBuffer(
|
2015-05-22 18:50:01 +00:00
|
|
|
stencilTable->GetOffsets(), GL_R32I);
|
2015-05-09 00:31:26 +00:00
|
|
|
_indices = createGLTextureBuffer(
|
2015-05-22 18:50:01 +00:00
|
|
|
stencilTable->GetControlIndices(), GL_R32I);
|
|
|
|
_weights = createGLTextureBuffer(stencilTable->GetWeights(), GL_R32F);
|
2015-05-09 00:31:26 +00:00
|
|
|
} else {
|
|
|
|
_sizes = _offsets = _indices = _weights = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
GLStencilTableTBO::~GLStencilTableTBO() {
|
2015-05-09 00:31:26 +00:00
|
|
|
if (_sizes) glDeleteTextures(1, &_sizes);
|
|
|
|
if (_offsets) glDeleteTextures(1, &_offsets);
|
|
|
|
if (_weights) glDeleteTextures(1, &_weights);
|
|
|
|
if (_indices) glDeleteTextures(1, &_indices);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
GLXFBEvaluator::GLXFBEvaluator() : _srcBufferTexture(0) {
|
|
|
|
memset (&_stencilKernel, 0, sizeof(_stencilKernel));
|
|
|
|
memset (&_patchKernel, 0, sizeof(_patchKernel));
|
2015-05-09 00:31:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLXFBEvaluator::~GLXFBEvaluator() {
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
if (_stencilKernel.program) {
|
|
|
|
glDeleteProgram(_stencilKernel.program);
|
|
|
|
}
|
|
|
|
if (_patchKernel.program) {
|
|
|
|
glDeleteProgram(_patchKernel.program);
|
2015-05-09 00:31:26 +00:00
|
|
|
}
|
|
|
|
if (_srcBufferTexture) {
|
|
|
|
glDeleteTextures(1, &_srcBufferTexture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
static GLuint
|
|
|
|
compileKernel(VertexBufferDescriptor const &srcDesc,
|
|
|
|
VertexBufferDescriptor const &dstDesc,
|
|
|
|
const char *kernelDefine) {
|
|
|
|
|
|
|
|
GLuint program = glCreateProgram();
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
GLuint shader = glCreateShader(GL_VERTEX_SHADER);
|
|
|
|
|
|
|
|
std::ostringstream defines;
|
|
|
|
defines << "#define LENGTH " << srcDesc.length << "\n"
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
<< "#define SRC_STRIDE " << srcDesc.stride << "\n"
|
|
|
|
<< kernelDefine << "\n";
|
2015-05-09 00:31:26 +00:00
|
|
|
std::string defineStr = defines.str();
|
|
|
|
|
|
|
|
const char *shaderSources[3] = {"#version 410\n", NULL, NULL};
|
|
|
|
|
|
|
|
shaderSources[1] = defineStr.c_str();
|
|
|
|
shaderSources[2] = shaderSource;
|
|
|
|
glShaderSource(shader, 3, shaderSources, NULL);
|
|
|
|
glCompileShader(shader);
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glAttachShader(program, shader);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
std::vector<std::string> outputs;
|
|
|
|
std::vector<const char *> pOutputs;
|
|
|
|
{
|
|
|
|
// vertex data (may include custom vertex data) and varying data
|
|
|
|
// are stored into the same buffer, interleaved.
|
|
|
|
//
|
|
|
|
// (gl_SkipComponents1)
|
|
|
|
// outVertexData[0]
|
|
|
|
// outVertexData[1]
|
|
|
|
// outVertexData[2]
|
|
|
|
// (gl_SkipComponents1)
|
|
|
|
//
|
|
|
|
// note that "primvarOffset" in shader is still needed to read
|
|
|
|
// interleaved components even if gl_SkipComponents is used.
|
|
|
|
//
|
|
|
|
char attrName[32];
|
|
|
|
int primvarOffset = (dstDesc.offset % dstDesc.stride);
|
|
|
|
for (int i = 0; i < primvarOffset; ++i) {
|
|
|
|
outputs.push_back("gl_SkipComponents1");
|
|
|
|
}
|
|
|
|
for (int i = 0; i < dstDesc.length; ++i) {
|
|
|
|
snprintf(attrName, sizeof(attrName), "outVertexBuffer[%d]", i);
|
|
|
|
outputs.push_back(attrName);
|
|
|
|
}
|
|
|
|
for (int i = primvarOffset + dstDesc.length; i < dstDesc.stride; ++i) {
|
|
|
|
outputs.push_back("gl_SkipComponents1");
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert to char* array
|
|
|
|
for (size_t i = 0; i < outputs.size(); ++i) {
|
|
|
|
pOutputs.push_back(&outputs[i][0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glTransformFeedbackVaryings(program, (GLsizei)outputs.size(),
|
2015-05-09 00:31:26 +00:00
|
|
|
&pOutputs[0], GL_INTERLEAVED_ATTRIBS);
|
|
|
|
|
|
|
|
GLint linked = 0;
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glLinkProgram(program);
|
|
|
|
glGetProgramiv(program, GL_LINK_STATUS, &linked);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
if (linked == GL_FALSE) {
|
|
|
|
char buffer[1024];
|
|
|
|
glGetShaderInfoLog(shader, 1024, NULL, buffer);
|
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR, buffer);
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glGetProgramInfoLog(program, 1024, NULL, buffer);
|
2015-05-09 00:31:26 +00:00
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR, buffer);
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glDeleteProgram(program);
|
|
|
|
program = 0;
|
2015-05-09 00:31:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glDeleteShader(shader);
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
return program;
|
|
|
|
}
|
2015-05-09 00:31:26 +00:00
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
bool
|
|
|
|
GLXFBEvaluator::Compile(VertexBufferDescriptor const &srcDesc,
|
|
|
|
VertexBufferDescriptor const &dstDesc) {
|
2015-05-09 00:31:26 +00:00
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
// create stencil kernel
|
|
|
|
if (_stencilKernel.program) {
|
|
|
|
glDeleteProgram(_stencilKernel.program);
|
|
|
|
}
|
|
|
|
_stencilKernel.program = compileKernel(
|
|
|
|
srcDesc, dstDesc,
|
|
|
|
"#define OPENSUBDIV_GLSL_XFB_KERNEL_EVAL_STENCILS");
|
|
|
|
if (_stencilKernel.program == 0) return false;
|
|
|
|
|
|
|
|
// cache uniform locations
|
|
|
|
_stencilKernel.uniformSrcBufferTexture
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "vertexBuffer");
|
|
|
|
_stencilKernel.uniformSrcOffset
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "srcOffset");
|
|
|
|
|
|
|
|
_stencilKernel.uniformSizesTexture
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "sizes");
|
|
|
|
_stencilKernel.uniformOffsetsTexture
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "offsets");
|
|
|
|
_stencilKernel.uniformIndicesTexture
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "indices");
|
|
|
|
_stencilKernel.uniformWeightsTexture
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "weights");
|
|
|
|
_stencilKernel.uniformStart
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "batchStart");
|
|
|
|
_stencilKernel.uniformEnd
|
|
|
|
= glGetUniformLocation(_stencilKernel.program, "batchEnd");
|
|
|
|
|
|
|
|
// create patch kernel
|
|
|
|
if (_patchKernel.program) {
|
|
|
|
glDeleteProgram(_patchKernel.program);
|
|
|
|
}
|
|
|
|
_patchKernel.program = compileKernel(
|
|
|
|
srcDesc, dstDesc,
|
|
|
|
"#define OPENSUBDIV_GLSL_XFB_KERNEL_EVAL_PATCHES");
|
|
|
|
if (_patchKernel.program == 0) return false;
|
|
|
|
|
|
|
|
// cache uniform locations
|
|
|
|
_patchKernel.uniformSrcBufferTexture
|
|
|
|
= glGetUniformLocation(_patchKernel.program, "vertexBuffer");
|
|
|
|
_patchKernel.uniformSrcOffset
|
|
|
|
= glGetUniformLocation(_patchKernel.program, "srcOffset");
|
|
|
|
|
|
|
|
_patchKernel.uniformPatchArray
|
|
|
|
= glGetUniformLocation(_patchKernel.program, "patchArray");
|
|
|
|
_patchKernel.uniformPatchParamTexture
|
|
|
|
= glGetUniformLocation(_patchKernel.program, "patchParamBuffer");
|
|
|
|
_patchKernel.uniformPatchIndexTexture
|
|
|
|
= glGetUniformLocation(_patchKernel.program, "patchIndexBuffer");
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
// create a texture for input buffer
|
|
|
|
if (!_srcBufferTexture) {
|
|
|
|
glGenTextures(1, &_srcBufferTexture);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
void
|
|
|
|
GLXFBEvaluator::Synchronize(void * /*kernel*/) {
|
|
|
|
// XXX: this is currently just for the test purpose.
|
|
|
|
// need to be reimplemented by fence and sync.
|
|
|
|
glFinish();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bindTexture(GLint sampler, GLuint texture, int unit) {
|
|
|
|
if (sampler == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
glUniform1i(sampler, unit);
|
|
|
|
glActiveTexture(GL_TEXTURE0 + unit);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, texture);
|
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
GLXFBEvaluator::EvalStencils(GLuint srcBuffer,
|
|
|
|
VertexBufferDescriptor const &srcDesc,
|
|
|
|
GLuint dstBuffer,
|
|
|
|
VertexBufferDescriptor const &dstDesc,
|
|
|
|
GLuint sizesTexture,
|
|
|
|
GLuint offsetsTexture,
|
|
|
|
GLuint indicesTexture,
|
|
|
|
GLuint weightsTexture,
|
|
|
|
int start,
|
|
|
|
int end) const {
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
if (!_stencilKernel.program) return false;
|
2015-05-09 00:31:26 +00:00
|
|
|
int count = end - start;
|
|
|
|
if (count <= 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// bind vertex array
|
|
|
|
// always create new one, to be safe with multiple contexts (slow though)
|
|
|
|
GLuint vao = 0;
|
|
|
|
glGenVertexArrays(1, &vao);
|
|
|
|
glBindVertexArray(vao);
|
|
|
|
|
|
|
|
glEnable(GL_RASTERIZER_DISCARD);
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glUseProgram(_stencilKernel.program);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
// Set input VBO as a texture buffer.
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, _srcBufferTexture);
|
|
|
|
glTexBuffer(GL_TEXTURE_BUFFER, GL_R32F, srcBuffer);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
bindTexture(_stencilKernel.uniformSrcBufferTexture, _srcBufferTexture, 0);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
// bind stencil table textures.
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
bindTexture(_stencilKernel.uniformSizesTexture, sizesTexture, 1);
|
|
|
|
bindTexture(_stencilKernel.uniformOffsetsTexture, offsetsTexture, 2);
|
|
|
|
bindTexture(_stencilKernel.uniformIndicesTexture, indicesTexture, 3);
|
|
|
|
bindTexture(_stencilKernel.uniformWeightsTexture, weightsTexture, 4);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
// set batch range
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
glUniform1i(_stencilKernel.uniformStart, start);
|
|
|
|
glUniform1i(_stencilKernel.uniformEnd, end);
|
|
|
|
glUniform1i(_stencilKernel.uniformSrcOffset, srcDesc.offset);
|
2015-05-09 00:31:26 +00:00
|
|
|
|
|
|
|
// The destination buffer is bound at vertex boundary.
|
|
|
|
//
|
|
|
|
// Example: When we have a batched and interleaved vertex buffer
|
|
|
|
//
|
|
|
|
// Obj X | Obj Y |
|
|
|
|
// -----------+-------------------------------------------+-------
|
|
|
|
// | vtx 0 | vtx 1 | |
|
|
|
|
// -----------+---------------+---------------+-----------+-------
|
|
|
|
// | x y z r g b a | x y z r g b a | .... |
|
|
|
|
// -----------+---------------+---------------+-----------+-------
|
|
|
|
// ^
|
|
|
|
// srcDesc.offset for Obj Y color
|
|
|
|
//
|
|
|
|
// ^-------------------------------------------^
|
|
|
|
// XFB destination buffer range
|
|
|
|
// S S S * * * *
|
|
|
|
// k k k
|
|
|
|
// i i i
|
|
|
|
// p p p
|
|
|
|
//
|
|
|
|
// We use gl_SkipComponents to skip the first 3 XYZ so the
|
|
|
|
// buffer itself needs to be bound for entire section of ObjY.
|
|
|
|
//
|
|
|
|
// Note that for the source buffer (texture) we bind the whole
|
|
|
|
// buffer (all VBO range) and use srcOffset=srcDesc.offset for
|
|
|
|
// indexing.
|
|
|
|
//
|
|
|
|
int dstBufferBindOffset =
|
|
|
|
dstDesc.offset - (dstDesc.offset % dstDesc.stride);
|
|
|
|
|
|
|
|
// bind destination buffer
|
|
|
|
glBindBufferRange(GL_TRANSFORM_FEEDBACK_BUFFER,
|
|
|
|
0, dstBuffer,
|
|
|
|
dstBufferBindOffset * sizeof(float),
|
|
|
|
count * dstDesc.stride * sizeof(float));
|
|
|
|
|
|
|
|
glBeginTransformFeedback(GL_POINTS);
|
|
|
|
glDrawArrays(GL_POINTS, 0, count);
|
|
|
|
glEndTransformFeedback();
|
|
|
|
|
|
|
|
glBindBuffer(GL_TRANSFORM_FEEDBACK_BUFFER, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 5; ++i) {
|
|
|
|
glActiveTexture(GL_TEXTURE0 + i);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
glDisable(GL_RASTERIZER_DISCARD);
|
|
|
|
glUseProgram(0);
|
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
|
|
|
|
// revert vao
|
|
|
|
glBindVertexArray(0);
|
|
|
|
glDeleteVertexArrays(1, &vao);
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Osd API refactor: EvalStencils and EvalPatches
Add EvalStencils and EvalPatches API for most of CPU and GPU evaluators.
with this change, Eval API in the osd layer consists of following parts:
- Evaluators (Cpu, Omp, Tbb, Cuda, CL, GLXFB, GLCompute, D3D11Compute)
implements EvalStencils and EvalPatches(*). Both supports derivatives
(not fully implemented though)
- Interop vertex buffer classes (optional, same as before)
Note that these classes are not necessary to use Evaluators.
All evaluators have EvalStencils/Patches which take device-specific
buffer objects. For example, GLXFBEvaluator can take GLuint directly
for both stencil tables and input primvars. Although using these
interop classes makes it easy to integrate osd into relatively
simple applications.
- device-dependent StencilTable and PatchTable (optional)
These are also optional, but can be used simply a substitute of
Far::StencilTable and Far::PatchTable for osd evaluators.
- PatchArray, PatchCoord, PatchParam
They are tiny structs used for GPU based patch evaluation.
(*) TODO and known issues:
- CLEvaluator and D3D11Evaluator's EvalPatches() have not been implemented.
- GPU Gregory patch evaluation has not been implemented in EvalPatches().
- CudaEvaluator::EvalPatches() is very unstable.
- All patch evaluation kernels have not been well optimized.
- Currently GLXFB kernel doesn't support derivative evaluation.
There's a technical difficulty for the multi-stream output.
2015-05-26 04:51:55 +00:00
|
|
|
bool
|
|
|
|
GLXFBEvaluator::EvalPatches(
|
|
|
|
GLuint srcBuffer, VertexBufferDescriptor const &srcDesc,
|
|
|
|
GLuint dstBuffer, VertexBufferDescriptor const &dstDesc,
|
|
|
|
GLuint duBuffer, VertexBufferDescriptor const & /*duDesc*/,
|
|
|
|
GLuint dvBuffer, VertexBufferDescriptor const & /*dvDesc*/,
|
|
|
|
int numPatchCoords,
|
|
|
|
GLuint patchCoordsBuffer,
|
|
|
|
const PatchArrayVector &patchArrays,
|
|
|
|
GLuint patchIndexTexture,
|
|
|
|
GLuint patchParamTexture) const {
|
|
|
|
if (!_patchKernel.program) return false;
|
|
|
|
|
|
|
|
if (duBuffer != 0 || dvBuffer != 0) {
|
|
|
|
Far::Error(Far::FAR_RUNTIME_ERROR,
|
|
|
|
"GLXFBEvaluator doesn't support derivative evaluation yet.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// bind vertex array
|
|
|
|
// always create new one, to be safe with multiple contexts (slow though)
|
|
|
|
GLuint vao = 0;
|
|
|
|
glGenVertexArrays(1, &vao);
|
|
|
|
glBindVertexArray(vao);
|
|
|
|
|
|
|
|
glEnable(GL_RASTERIZER_DISCARD);
|
|
|
|
glUseProgram(_patchKernel.program);
|
|
|
|
|
|
|
|
// Set input VBO as a texture buffer.
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, _srcBufferTexture);
|
|
|
|
glTexBuffer(GL_TEXTURE_BUFFER, GL_R32F, srcBuffer);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
|
|
|
|
|
|
|
bindTexture(_patchKernel.uniformSrcBufferTexture, _srcBufferTexture, 0);
|
|
|
|
|
|
|
|
// bind patch index and patch param textures.
|
|
|
|
bindTexture(_patchKernel.uniformPatchParamTexture, patchParamTexture, 1);
|
|
|
|
bindTexture(_patchKernel.uniformPatchIndexTexture, patchIndexTexture, 2);
|
|
|
|
|
|
|
|
// set other uniforms
|
|
|
|
glUniform4iv(_patchKernel.uniformPatchArray, (int)patchArrays.size(),
|
|
|
|
(const GLint*)&patchArrays[0]);
|
|
|
|
glUniform1i(_patchKernel.uniformSrcOffset, srcDesc.offset);
|
|
|
|
|
|
|
|
// input patchcoords
|
|
|
|
glEnableVertexAttribArray(0);
|
|
|
|
glEnableVertexAttribArray(1);
|
|
|
|
int stride = sizeof(int) * 5; // patchcoord = int*5 struct
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, patchCoordsBuffer);
|
|
|
|
glVertexAttribIPointer(0, 3, GL_UNSIGNED_INT, stride, (void*)0);
|
|
|
|
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, stride, (void*)(sizeof(int)*3));
|
|
|
|
|
|
|
|
int dstBufferBindOffset =
|
|
|
|
dstDesc.offset - (dstDesc.offset % dstDesc.stride);
|
|
|
|
|
|
|
|
// bind destination buffer
|
|
|
|
glBindBufferRange(GL_TRANSFORM_FEEDBACK_BUFFER,
|
|
|
|
0, dstBuffer,
|
|
|
|
dstBufferBindOffset * sizeof(float),
|
|
|
|
numPatchCoords * dstDesc.stride * sizeof(float));
|
|
|
|
|
|
|
|
glBeginTransformFeedback(GL_POINTS);
|
|
|
|
glDrawArrays(GL_POINTS, 0, numPatchCoords);
|
|
|
|
glEndTransformFeedback();
|
|
|
|
|
|
|
|
glBindBuffer(GL_TRANSFORM_FEEDBACK_BUFFER, 0);
|
|
|
|
|
|
|
|
// unbind textures
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
glActiveTexture(GL_TEXTURE0 + i);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
glDisable(GL_RASTERIZER_DISCARD);
|
|
|
|
glUseProgram(0);
|
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
|
|
|
|
glDisableVertexAttribArray(0);
|
|
|
|
glDisableVertexAttribArray(1);
|
|
|
|
|
|
|
|
// revert vao
|
|
|
|
glBindVertexArray(0);
|
|
|
|
glDeleteVertexArrays(1, &vao);
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-09 00:31:26 +00:00
|
|
|
} // end namespace Osd
|
|
|
|
|
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
} // end namespace OpenSubdiv
|