31 lines
601 B
C++
31 lines
601 B
C++
//
|
|
// Copyright 2013 Pixar
|
|
//
|
|
// Licensed under the terms set forth in the LICENSE.txt file available at
|
|
// https://opensubdiv.org/license.
|
|
//
|
|
|
|
#ifndef OPENSUBDIV3_OSD_MTL_MESH_H
|
|
#define OPENSUBDIV3_OSD_MTL_MESH_H
|
|
|
|
#include "../version.h"
|
|
#include "../osd/mesh.h"
|
|
#include "../osd/mtlPatchTable.h"
|
|
|
|
|
|
namespace OpenSubdiv {
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
namespace Osd {
|
|
|
|
typedef MeshInterface<MTLPatchTable> MTLMeshInterface;
|
|
|
|
} // end namespace Osd
|
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
using namespace OPENSUBDIV_VERSION;
|
|
|
|
} // end namespace OpenSubdiv
|
|
|
|
#endif // OPENSUBDIV3_OSD_MTL_MESH_H
|