mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-09 13:50:05 +00:00
28f2574bc5
This introduces an internal glLoader library which allows most of the implementation to be agnostic about the implementation of the GL loading library. Specifically, this removes references to the GLEW headers and libraries from the rest of the source code and build system.
161 lines
4.8 KiB
C++
161 lines
4.8 KiB
C++
//
|
|
// 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.
|
|
//
|
|
|
|
#ifndef OPENSUBDIV_EXAMPLES_GL_SHARE_TOPOLOGY_SCENE_BASE_H
|
|
#define OPENSUBDIV_EXAMPLES_GL_SHARE_TOPOLOGY_SCENE_BASE_H
|
|
|
|
#include "glLoader.h"
|
|
|
|
#include <opensubdiv/far/patchDescriptor.h>
|
|
#include <opensubdiv/far/patchTable.h>
|
|
#include <opensubdiv/osd/bufferDescriptor.h>
|
|
|
|
struct Shape;
|
|
|
|
class SceneBase {
|
|
public:
|
|
enum EndCap { kEndCapBSplineBasis,
|
|
kEndCapGregoryBasis };
|
|
|
|
struct Options {
|
|
Options() : adaptive(true), endCap(kEndCapGregoryBasis) { }
|
|
|
|
bool adaptive;
|
|
int endCap;
|
|
};
|
|
|
|
struct Object {
|
|
int topologyIndex;
|
|
int vertsOffset; // an offset within the VBO
|
|
};
|
|
|
|
struct PatchArray {
|
|
OpenSubdiv::Far::PatchDescriptor desc;
|
|
int numPatches;
|
|
int indexOffset; // an offset within the index buffer
|
|
int primitiveIDOffset; // an offset within the patch param buffer
|
|
};
|
|
typedef std::vector<PatchArray> PatchArrayVector;
|
|
|
|
struct Topology {
|
|
int numVerts;
|
|
PatchArrayVector patchArrays;
|
|
std::vector<float> restPosition;
|
|
};
|
|
|
|
struct Batch {
|
|
OpenSubdiv::Far::PatchDescriptor desc;
|
|
int count;
|
|
int stride;
|
|
GLuint dispatchBuffer;
|
|
};
|
|
typedef std::vector<Batch> BatchVector;
|
|
|
|
/// Constructor.
|
|
SceneBase(Options const &options);
|
|
|
|
/// Destructor.
|
|
virtual ~SceneBase();
|
|
|
|
/// trivial accessors
|
|
int GetNumObjects() const { return (int)_objects.size(); }
|
|
|
|
PatchArrayVector const &GetPatchArrays(int object) const {
|
|
return _topologies[_objects[object].topologyIndex].patchArrays;
|
|
}
|
|
|
|
BatchVector const &GetBatches() {
|
|
if (_batches.empty()) buildBatches();
|
|
return _batches;
|
|
}
|
|
|
|
int GetVertsOffset(int object) const {
|
|
return _objects[object].vertsOffset;
|
|
}
|
|
|
|
std::vector<float> const &GetRestPosition(int object) const {
|
|
return _topologies[_objects[object].topologyIndex].restPosition;
|
|
}
|
|
|
|
GLuint GetPatchParamTexture() const {
|
|
return _patchParamTexture;
|
|
}
|
|
|
|
GLuint GetIndexBuffer() const {
|
|
return _indexBuffer;
|
|
}
|
|
|
|
// allocate batched vbo
|
|
virtual size_t AllocateVBO(int numVerts,
|
|
OpenSubdiv::Osd::BufferDescriptor const &vertexDesc,
|
|
OpenSubdiv::Osd::BufferDescriptor const &varyingDesc,
|
|
bool interleaved) = 0;
|
|
|
|
// refine an object
|
|
virtual void Refine(int object) =0;
|
|
|
|
virtual void Synchronize() = 0;
|
|
|
|
virtual void UpdateVertexBuffer(int vertsOffset, std::vector<float> const &src)=0;
|
|
|
|
virtual void UpdateVaryingBuffer(int vertsOffset, std::vector<float> const &src)=0;
|
|
|
|
virtual GLuint BindVertexBuffer() = 0;
|
|
|
|
virtual GLuint BindVaryingBuffer() = 0;
|
|
|
|
// build batched index buffer and patchparam texture buffer
|
|
size_t CreateIndexBuffer();
|
|
|
|
void AddTopology(Shape const *shape, int level, bool varying);
|
|
|
|
int AddObjects(int numObjects);
|
|
|
|
size_t GetStencilTableSize() const { return _stencilTableSize; }
|
|
|
|
protected:
|
|
int createStencilTable(Shape const *shape, int level, bool varying,
|
|
OpenSubdiv::Far::PatchTable const **patchTableOut);
|
|
|
|
void buildBatches();
|
|
|
|
virtual size_t createMeshRefiner(
|
|
OpenSubdiv::Far::StencilTable const * vertexStencils,
|
|
OpenSubdiv::Far::StencilTable const * varyingStencils,
|
|
int numControlVertices) = 0;
|
|
|
|
Options _options;
|
|
|
|
std::vector<Object> _objects;
|
|
std::vector<Topology> _topologies;
|
|
std::vector<OpenSubdiv::Far::PatchTable const *> _patchTables;
|
|
GLuint _indexBuffer;
|
|
GLuint _patchParamTexture;
|
|
BatchVector _batches;
|
|
size_t _stencilTableSize;
|
|
|
|
};
|
|
|
|
#endif // OPENSUBDIV_EXAMPLES_GL_SHARE_TOPOLOGY_SCENE_BASE_H
|