// // Copyright 2013 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. // #ifndef OPENSUBDIV3_FAR_GREGORY_BASIS_H #define OPENSUBDIV3_FAR_GREGORY_BASIS_H #include "../far/protoStencil.h" #include "../vtr/level.h" #include namespace OpenSubdiv { namespace OPENSUBDIV_VERSION { namespace Far { class TopologyRefiner; /// \brief Container for gregory basis stencils /// /// XXXtakahito: Currently these classes are being used by EndPatch factories. /// These classes will likely go away once we get limit masks /// from SchemeWorker. /// class GregoryBasis { public: /// \brief Updates point values based on the control values /// /// \note The destination buffers are assumed to have allocated at least /// \c GetNumStencils() elements. /// /// @param controlValues Buffer with primvar data for the control vertices /// /// @param values Destination buffer for the interpolated primvar /// data /// template void Evaluate(T const & controlValues, U values[20]) const { Index const * indices = &_indices.at(0); float const * weights = &_weights.at(0); for (int i=0; i<20; ++i) { values[i].Clear(); for (int j=0; j<_sizes[i]; ++j, ++indices, ++weights) { values[i].AddWithWeight(controlValues[*indices], *weights); } } } // // Basis point // // Implements arithmetic operators to manipulate the influence of the // 1-ring control vertices supporting the patch basis // class Point { public: static const int RESERVED_ENTRY_SIZE = 64; Point() : _size(0) { _indices.reserve(RESERVED_ENTRY_SIZE); _weights.reserve(RESERVED_ENTRY_SIZE); } Point(Index idx, float weight = 1.0f) { _indices.reserve(RESERVED_ENTRY_SIZE); _weights.reserve(RESERVED_ENTRY_SIZE); _size = 1; _indices.push_back(idx); _weights.push_back(weight); } Point(Point const & other) { *this = other; } int GetSize() const { return _size; } Index const * GetIndices() const { return &_indices[0]; } float const * GetWeights() const { return &_weights[0]; } Point & operator = (Point const & other) { _size = other._size; _indices = other._indices; _weights = other._weights; return *this; } Point & operator += (Point const & other) { for (int i=0; i _indices; std::vector _weights; }; // // ProtoBasis // // Given a Vtr::Level and a face index, gathers all the influences of the // 1-ring that supports the 20 CVs of a Gregory patch basis. // struct ProtoBasis { ProtoBasis(Vtr::Level const & level, Index faceIndex, int fvarChannel=-1); int GetNumElements() const; void Copy(int * sizes, Index * indices, float * weights) const; void Copy(GregoryBasis* dest) const; // Control Vertices based on : // "Approximating Subdivision Surfaces with Gregory Patches for Hardware // Tessellation" Loop, Schaefer, Ni, Castano (ACM ToG Siggraph Asia // 2009) // // P3 e3- e2+ P2 // O--------O--------O--------O // | | | | // | | | | // | | f3- | f2+ | // | O O | // e3+ O------O O------O e2- // | f3+ f2- | // | | // | | // | f0- f1+ | // e0- O------O O------O e1+ // | O O | // | | f0+ | f1- | // | | | | // | | | | // O--------O--------O--------O // P0 e0+ e1- P1 // Point P[4], Ep[4], Em[4], Fp[4], Fm[4]; // for varying interpolation Point V[4]; }; typedef std::vector PointsVector; static StencilTables *CreateStencilTables(PointsVector const &stencils); private: int _sizes[20]; std::vector _indices; std::vector _weights; }; } // end namespace Far } // end namespace OPENSUBDIV_VERSION } // end namespace OpenSubdiv #endif /* OPENSUBDIV3_FAR_GREGORY_BASIS_H */