2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-07-18 21:19:50 +00:00
|
|
|
// Copyright 2013 Pixar
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-07-18 21:19:50 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License
|
|
|
|
// and the following modification to it: Section 6 Trademarks.
|
|
|
|
// deleted and replaced with:
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-07-18 21:19:50 +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 for reproducing
|
|
|
|
// the content of the NOTICE file.
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-07-18 21:19:50 +00:00
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing,
|
|
|
|
// software distributed under the License is distributed on an
|
|
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
|
|
// either express or implied. See the License for the specific
|
|
|
|
// language governing permissions and limitations under the
|
|
|
|
// License.
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#include "../far/dispatcher.h"
|
|
|
|
#include "../far/loopSubdivisionTables.h"
|
|
|
|
#include "../osd/glDrawRegistry.h"
|
|
|
|
#include "../osd/glDrawContext.h"
|
|
|
|
|
2013-06-10 22:54:40 +00:00
|
|
|
#include "../osd/opengl.h"
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
|
|
|
OsdGLDrawContext::OsdGLDrawContext() :
|
2013-06-01 00:11:16 +00:00
|
|
|
_patchIndexBuffer(0), _patchParamTextureBuffer(0), _fvarDataTextureBuffer(0),
|
|
|
|
_vertexTextureBuffer(0), _vertexValenceTextureBuffer(0), _quadOffsetsTextureBuffer(0)
|
2012-12-11 01:15:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OsdGLDrawContext::~OsdGLDrawContext()
|
|
|
|
{
|
2013-06-01 00:11:16 +00:00
|
|
|
glDeleteBuffers(1, &_patchIndexBuffer);
|
|
|
|
glDeleteTextures(1, &_vertexTextureBuffer);
|
|
|
|
glDeleteTextures(1, &_vertexValenceTextureBuffer);
|
|
|
|
glDeleteTextures(1, &_quadOffsetsTextureBuffer);
|
|
|
|
glDeleteTextures(1, &_patchParamTextureBuffer);
|
|
|
|
glDeleteTextures(1, &_fvarDataTextureBuffer);
|
2012-12-11 01:15:13 +00:00
|
|
|
}
|
|
|
|
|
2013-02-05 23:04:07 +00:00
|
|
|
bool
|
|
|
|
OsdGLDrawContext::SupportsAdaptiveTessellation()
|
|
|
|
{
|
2013-07-19 02:44:54 +00:00
|
|
|
#ifdef OSD_USES_GLEW
|
|
|
|
// XXX: uncomment here to try tessellation on OSX
|
|
|
|
// if (GLEW_ARB_tessellation_shader)
|
|
|
|
// return true;
|
2013-02-05 23:04:07 +00:00
|
|
|
#endif
|
2013-07-19 02:44:54 +00:00
|
|
|
static const GLubyte *version = glGetString(GL_VERSION);
|
|
|
|
if (version and version[0] == '4')
|
|
|
|
return true;
|
|
|
|
|
2013-02-05 23:04:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-17 21:56:39 +00:00
|
|
|
template <typename T> static GLuint
|
|
|
|
createTextureBuffer(T const &data, GLint format, int offset=0)
|
2013-05-09 20:14:02 +00:00
|
|
|
{
|
2013-05-11 02:35:25 +00:00
|
|
|
GLuint buffer = 0, texture = 0;
|
2013-05-09 20:14:02 +00:00
|
|
|
|
2013-05-11 02:35:25 +00:00
|
|
|
#if defined(GL_ARB_texture_buffer_object) || defined(GL_VERSION_3_1)
|
|
|
|
glGenTextures(1, &texture);
|
|
|
|
glGenBuffers(1, &buffer);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, buffer);
|
2013-05-16 00:53:40 +00:00
|
|
|
glBufferData(GL_ARRAY_BUFFER, (data.size()-offset) * sizeof(typename T::value_type),
|
|
|
|
&data[offset], GL_STATIC_DRAW);
|
2013-05-11 02:35:25 +00:00
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
2013-05-09 20:14:02 +00:00
|
|
|
|
2013-05-11 02:35:25 +00:00
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, texture);
|
|
|
|
glTexBuffer(GL_TEXTURE_BUFFER, format, buffer);
|
2013-07-10 23:06:34 +00:00
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
2013-05-11 02:35:25 +00:00
|
|
|
glDeleteBuffers(1, &buffer);
|
|
|
|
#endif
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-05-11 02:35:25 +00:00
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2013-05-16 00:53:40 +00:00
|
|
|
OsdGLDrawContext *
|
|
|
|
OsdGLDrawContext::Create(FarPatchTables const * patchTables, bool requireFVarData) {
|
2013-05-09 16:23:01 +00:00
|
|
|
|
2013-05-16 00:53:40 +00:00
|
|
|
if (patchTables) {
|
|
|
|
|
|
|
|
OsdGLDrawContext * result = new OsdGLDrawContext();
|
|
|
|
|
|
|
|
if (result->create(patchTables, requireFVarData)) {
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
delete result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
OsdGLDrawContext::create(FarPatchTables const * patchTables, bool requireFVarData) {
|
2013-05-09 16:23:01 +00:00
|
|
|
|
2013-05-16 00:53:40 +00:00
|
|
|
assert(patchTables);
|
|
|
|
|
|
|
|
_isAdaptive = patchTables->IsFeatureAdaptive();
|
|
|
|
|
|
|
|
// Process PTable
|
2013-05-09 16:23:01 +00:00
|
|
|
FarPatchTables::PTable const & ptables = patchTables->GetPatchTable();
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-06-01 00:11:16 +00:00
|
|
|
glGenBuffers(1, &_patchIndexBuffer);
|
|
|
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, _patchIndexBuffer);
|
2012-12-11 01:15:13 +00:00
|
|
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER,
|
2013-05-09 16:23:01 +00:00
|
|
|
ptables.size() * sizeof(unsigned int), &ptables[0], GL_STATIC_DRAW);
|
2013-05-09 17:53:58 +00:00
|
|
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
|
2013-05-16 00:53:40 +00:00
|
|
|
|
2013-05-17 02:53:49 +00:00
|
|
|
OsdDrawContext::ConvertPatchArrays(patchTables->GetPatchArrayVector(),
|
|
|
|
patchArrays, patchTables->GetMaxValence(), 0);
|
2013-05-16 00:53:40 +00:00
|
|
|
|
2013-05-17 02:53:49 +00:00
|
|
|
/*
|
|
|
|
#if defined(GL_ES_VERSION_2_0)
|
|
|
|
// XXX: farmesh should have FarDensePatchTable for dense mesh indices.
|
|
|
|
// instead of GetFaceVertices().
|
|
|
|
const FarSubdivisionTables<OsdVertex> *tables = farMesh->GetSubdivisionTables();
|
|
|
|
int level = tables->GetMaxLevel();
|
|
|
|
const std::vector<int> &indices = farMesh->GetFaceVertices(level-1);
|
2013-05-16 00:53:40 +00:00
|
|
|
|
2013-05-17 02:53:49 +00:00
|
|
|
int numIndices = (int)indices.size();
|
2013-05-16 00:53:40 +00:00
|
|
|
|
2013-05-17 02:53:49 +00:00
|
|
|
// Allocate and fill index buffer.
|
2013-06-01 00:11:16 +00:00
|
|
|
glGenBuffers(1, &_patchIndexBuffer);
|
|
|
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, _patchIndexBuffer);
|
2013-05-17 02:53:49 +00:00
|
|
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER,
|
|
|
|
numIndices * sizeof(unsigned int), &(indices[0]), GL_STATIC_DRAW);
|
2013-05-16 00:53:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
// OpenGLES 2 supports only triangle topologies for filled
|
|
|
|
// primitives i.e. not QUADS or PATCHES or LINES_ADJACENCY
|
|
|
|
// For the convenience of clients build build a triangles
|
|
|
|
// index buffer by splitting quads.
|
|
|
|
int numQuads = indices.size() / 4;
|
|
|
|
int numTrisIndices = numQuads * 6;
|
|
|
|
|
|
|
|
std::vector<short> trisIndices;
|
|
|
|
trisIndices.reserve(numTrisIndices);
|
|
|
|
for (int i=0; i<numQuads; ++i) {
|
|
|
|
const int * quad = &indices[i*4];
|
|
|
|
trisIndices.push_back(short(quad[0]));
|
|
|
|
trisIndices.push_back(short(quad[1]));
|
|
|
|
trisIndices.push_back(short(quad[2]));
|
|
|
|
|
|
|
|
trisIndices.push_back(short(quad[2]));
|
|
|
|
trisIndices.push_back(short(quad[3]));
|
|
|
|
trisIndices.push_back(short(quad[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate and fill triangles index buffer.
|
|
|
|
glGenBuffers(1, &patchTrianglesIndexBuffer);
|
|
|
|
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, patchTrianglesIndexBuffer);
|
|
|
|
glBufferData(GL_ELEMENT_ARRAY_BUFFER,
|
|
|
|
numTrisIndices * sizeof(short), &(trisIndices[0]), GL_STATIC_DRAW);
|
|
|
|
#endif
|
2013-05-17 02:53:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// allocate and initialize additional buffer data
|
|
|
|
|
2013-08-07 18:16:00 +00:00
|
|
|
#if defined(GL_ARB_texture_buffer_object) || defined(GL_VERSION_3_1)
|
2013-05-17 02:53:49 +00:00
|
|
|
// create vertex valence buffer and vertex texture
|
|
|
|
FarPatchTables::VertexValenceTable const &
|
|
|
|
valenceTable = patchTables->GetVertexValenceTable();
|
|
|
|
|
|
|
|
if (not valenceTable.empty()) {
|
2013-06-01 00:11:16 +00:00
|
|
|
_vertexValenceTextureBuffer = createTextureBuffer(valenceTable, GL_R32I);
|
2013-05-17 02:53:49 +00:00
|
|
|
|
|
|
|
// also create vertex texture buffer (will be updated in UpdateVertexTexture())
|
2013-06-01 00:11:16 +00:00
|
|
|
glGenTextures(1, &_vertexTextureBuffer);
|
2013-05-16 00:53:40 +00:00
|
|
|
}
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-05-17 02:53:49 +00:00
|
|
|
|
|
|
|
// create quad offset table buffer
|
|
|
|
FarPatchTables::QuadOffsetTable const &
|
|
|
|
quadOffsetTable = patchTables->GetQuadOffsetTable();
|
|
|
|
|
|
|
|
if (not quadOffsetTable.empty())
|
2013-06-01 00:11:16 +00:00
|
|
|
_quadOffsetsTextureBuffer = createTextureBuffer(quadOffsetTable, GL_R32I);
|
2013-05-17 02:53:49 +00:00
|
|
|
|
|
|
|
|
2013-05-16 00:53:40 +00:00
|
|
|
// create ptex coordinate buffer
|
2013-05-17 16:47:44 +00:00
|
|
|
FarPatchTables::PatchParamTable const &
|
2013-06-01 00:11:16 +00:00
|
|
|
patchParamTables = patchTables->GetPatchParamTable();
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-06-01 00:11:16 +00:00
|
|
|
if (not patchParamTables.empty())
|
|
|
|
_patchParamTextureBuffer = createTextureBuffer(patchParamTables, GL_RG32I);
|
2013-05-17 02:53:49 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
|
2013-05-16 00:53:40 +00:00
|
|
|
// create fvar data buffer if requested
|
2013-05-11 02:35:25 +00:00
|
|
|
FarPatchTables::FVarDataTable const &
|
|
|
|
fvarTables = patchTables->GetFVarDataTable();
|
2013-05-09 16:23:01 +00:00
|
|
|
|
2013-05-11 02:35:25 +00:00
|
|
|
if (requireFVarData and not fvarTables.empty())
|
2013-06-01 00:11:16 +00:00
|
|
|
_fvarDataTextureBuffer = createTextureBuffer(fvarTables, GL_R32F);
|
2013-08-07 18:16:00 +00:00
|
|
|
#endif
|
2013-05-11 02:35:25 +00:00
|
|
|
|
2013-05-09 17:53:58 +00:00
|
|
|
glBindBuffer(GL_TEXTURE_BUFFER, 0);
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-11 02:35:25 +00:00
|
|
|
void
|
|
|
|
OsdGLDrawContext::updateVertexTexture(GLuint vbo, int numVertexElements)
|
|
|
|
{
|
2013-08-07 18:16:00 +00:00
|
|
|
#if defined(GL_ARB_texture_buffer_object) || defined(GL_VERSION_3_1)
|
2013-06-01 00:11:16 +00:00
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, _vertexTextureBuffer);
|
2013-05-11 02:35:25 +00:00
|
|
|
glTexBuffer(GL_TEXTURE_BUFFER, GL_R32F, vbo);
|
|
|
|
glBindTexture(GL_TEXTURE_BUFFER, 0);
|
2013-08-07 18:16:00 +00:00
|
|
|
#endif
|
2013-05-11 02:35:25 +00:00
|
|
|
|
|
|
|
// XXX: consider moving this proc to base class
|
|
|
|
// updating num elements in descriptor with new vbo specs
|
|
|
|
for (int i = 0; i < (int)patchArrays.size(); ++i) {
|
|
|
|
PatchArray &parray = patchArrays[i];
|
|
|
|
PatchDescriptor desc = parray.GetDescriptor();
|
|
|
|
desc.SetNumElements(numVertexElements);
|
|
|
|
parray.SetDescriptor(desc);
|
|
|
|
}
|
|
|
|
}
|
2013-05-09 20:14:02 +00:00
|
|
|
|
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
} // end namespace OpenSubdiv
|