HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mesh.h
Go to the documentation of this file.
1 //
2 // Copyright 2016 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef PXR_IMAGING_HD_MESH_H
25 #define PXR_IMAGING_HD_MESH_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/hd/api.h"
29 #include "pxr/imaging/hd/version.h"
30 #include "pxr/imaging/hd/enums.h"
32 #include "pxr/imaging/hd/rprim.h"
33 #include "pxr/imaging/hd/tokens.h"
35 
37 
38 #define HD_MESH_REPR_DESC_TOKENS \
39  (surfaceShader) \
40  (surfaceShaderUnlit) \
41  (surfaceShaderSheer) \
42  (surfaceShaderOutline) \
43  (constantColor) \
44  (hullColor) \
45  (pointColor)
46 
47 TF_DECLARE_PUBLIC_TOKENS(HdMeshReprDescTokens, HD_API,
49 
50 /// \class HdMeshReprDesc
51 ///
52 /// Descriptor to configure the drawItem(s) for a repr
53 ///
55 {
58  TfToken shadingTerminal = HdMeshReprDescTokens->surfaceShader,
59  bool flatShadingEnabled = false,
60  bool blendWireframeColor = true,
61  bool forceOpaqueEdges = true,
62  bool doubleSided = false,
63  float lineWidth = 0,
64  bool useCustomDisplacement = true,
65  bool enableScalarOverride = true)
76  {}
77 
78  bool IsEmpty() const {
80  }
81 
82  /// The rendering style: draw refined/unrefined, edge, points, etc.
84  /// The culling style: draw front faces, back faces, etc.
86  /// Specifies how the fragment color should be computed from surfaceShader;
87  /// this can be used to render a mesh lit, unlit, unshaded, etc.
89  /// Does this mesh want flat shading?
91  /// Should the wireframe color be blended into the color primvar?
93  /// If the geom style includes edges, should those edges be forced
94  /// to be fully opaque, ignoring any applicable opacity inputs.
95  /// Does not apply to patch edges.
97  /// Should this mesh be treated as double-sided? The resolved value is
98  /// (prim.doubleSided || repr.doubleSided).
100  /// How big (in pixels) should line drawing be?
101  float lineWidth;
102  /// Should this mesh use displacementShader() to displace points?
104  /// Should scalar override be allowed on this drawItem.
105  /// scalar override allows for visualization of a single float value
106  /// across a prim.
108 };
109 
110 /// Hydra Schema for a subdivision surface or poly-mesh object.
111 ///
112 class HdMesh : public HdRprim
113 {
114 public:
115  HD_API
116  ~HdMesh() override;
117 
118  ///
119  /// Render State
120  ///
121  inline bool IsDoubleSided(HdSceneDelegate* delegate) const;
122  inline HdCullStyle GetCullStyle(HdSceneDelegate* delegate) const;
123  inline VtValue GetShadingStyle(HdSceneDelegate* delegate) const;
124 
125  ///
126  /// Topological accessors via the scene delegate
127  ///
128  inline HdMeshTopology GetMeshTopology(HdSceneDelegate* delegate) const;
129  inline HdDisplayStyle GetDisplayStyle(HdSceneDelegate* delegate) const;
130  inline PxOsdSubdivTags GetSubdivTags(HdSceneDelegate* delegate) const;
131 
132  /// Topology getter
133  virtual HdMeshTopologySharedPtr GetTopology() const;
134 
135  ///
136  /// Primvars Accessors
137  ///
138  inline VtValue GetPoints(HdSceneDelegate* delegate) const;
139  inline VtValue GetNormals(HdSceneDelegate* delegate) const;
140 
141  HD_API
142  TfTokenVector const & GetBuiltinPrimvarNames() const override;
143 
144  /// Configure the geometric style of the mesh for a given representation.
145  /// We currently allow up to 2 descriptors for a representation.
146  /// Example of when this may be useful:
147  /// Drawing the outline in addition to the surface for a mesh.
148  HD_API
149  static void ConfigureRepr(TfToken const &reprName,
150  HdMeshReprDesc desc1,
152 
153 protected:
154  /// Constructor. instancerId, if specified, is the instancer which uses
155  /// this mesh as a prototype.
156  HD_API
157  HdMesh(SdfPath const& id);
158 
159  // We allow up to 2 repr descs per repr for meshes (see ConfigureRepr above)
161 
162  HD_API
163  static _MeshReprConfig::DescArray _GetReprDesc(TfToken const &reprName);
164 
165 private:
166 
167  // Class can not be default constructed or copied.
168  HdMesh() = delete;
169  HdMesh(const HdMesh &) = delete;
170  HdMesh &operator =(const HdMesh &) = delete;
171 
172  static _MeshReprConfig _reprDescConfig;
173 };
174 
175 inline bool
177 {
178  return delegate->GetDoubleSided(GetId());
179 }
180 
181 inline HdCullStyle
183 {
184  return delegate->GetCullStyle(GetId());
185 }
186 
187 inline VtValue
189 {
190  return delegate->GetShadingStyle(GetId());
191 }
192 
193 inline HdMeshTopology
195 {
196  return delegate->GetMeshTopology(GetId());
197 }
198 
199 inline HdDisplayStyle
201 {
202  return delegate->GetDisplayStyle(GetId());
203 }
204 
205 inline PxOsdSubdivTags
207 {
208  return delegate->GetSubdivTags(GetId());
209 }
210 
213 {
214  return HdMeshTopologySharedPtr();
215 }
216 
217 inline VtValue
219 {
220  return GetPrimvar(delegate, HdTokens->points);
221 }
222 
223 inline VtValue
225 {
226  return GetPrimvar(delegate, HdTokens->normals);
227 }
228 
229 
231 
232 #endif //PXR_IMAGING_HD_MESH_H
#define HD_MESH_REPR_DESC_TOKENS
Definition: mesh.h:38
HdCullStyle
Definition: enums.h:122
bool forceOpaqueEdges
Definition: mesh.h:96
bool blendWireframeColor
Should the wireframe color be blended into the color primvar?
Definition: mesh.h:92
HD_API ~HdMesh() override
static HD_API void ConfigureRepr(TfToken const &reprName, HdMeshReprDesc desc1, HdMeshReprDesc desc2=HdMeshReprDesc())
VtValue GetShadingStyle(HdSceneDelegate *delegate) const
Definition: mesh.h:188
#define HD_API
Definition: api.h:40
std::shared_ptr< class HdMeshTopology > HdMeshTopologySharedPtr
Definition: meshTopology.h:45
virtual HD_API PxOsdSubdivTags GetSubdivTags(SdfPath const &id)
Gets the subdivision surface tags (sharpness, holes, etc).
Definition: token.h:87
virtual HD_API HdDisplayStyle GetDisplayStyle(SdfPath const &id)
HdMeshTopology GetMeshTopology(HdSceneDelegate *delegate) const
Definition: mesh.h:194
bool doubleSided
Definition: mesh.h:99
Definition: rprim.h:54
VtValue GetPrimvar(HdSceneDelegate *delegate, const TfToken &name) const
Definition: rprim.h:371
static HD_API _MeshReprConfig::DescArray _GetReprDesc(TfToken const &reprName)
bool useCustomDisplacement
Should this mesh use displacementShader() to displace points?
Definition: mesh.h:103
HdMeshGeomStyle
Definition: enums.h:147
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:457
TF_DECLARE_PUBLIC_TOKENS(HdMeshReprDescTokens, HD_API, HD_MESH_REPR_DESC_TOKENS)
Definition: path.h:290
bool IsDoubleSided(HdSceneDelegate *delegate) const
Definition: mesh.h:176
TfToken shadingTerminal
Definition: mesh.h:88
VtValue GetNormals(HdSceneDelegate *delegate) const
Definition: mesh.h:224
virtual HdMeshTopologySharedPtr GetTopology() const
Topology getter.
Definition: mesh.h:212
HD_API TfTokenVector const & GetBuiltinPrimvarNames() const override
HdDisplayStyle GetDisplayStyle(HdSceneDelegate *delegate) const
Definition: mesh.h:200
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1432
SdfPath const & GetId() const
Definition: rprim.h:163
HdCullStyle GetCullStyle(HdSceneDelegate *delegate) const
Definition: mesh.h:182
virtual HD_API HdMeshTopology GetMeshTopology(SdfPath const &id)
Gets the topological mesh data for a given prim.
std::array< DESC_TYPE, N > DescArray
Definition: rprim.h:321
HdMeshReprDesc(HdMeshGeomStyle geomStyle=HdMeshGeomStyleInvalid, HdCullStyle cullStyle=HdCullStyleDontCare, TfToken shadingTerminal=HdMeshReprDescTokens->surfaceShader, bool flatShadingEnabled=false, bool blendWireframeColor=true, bool forceOpaqueEdges=true, bool doubleSided=false, float lineWidth=0, bool useCustomDisplacement=true, bool enableScalarOverride=true)
Definition: mesh.h:56
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
Definition: mesh.h:112
PxOsdSubdivTags GetSubdivTags(HdSceneDelegate *delegate) const
Definition: mesh.h:206
virtual HD_API HdCullStyle GetCullStyle(SdfPath const &id)
Returns the cullstyle for the given prim.
HdMeshGeomStyle geomStyle
The rendering style: draw refined/unrefined, edge, points, etc.
Definition: mesh.h:83
bool flatShadingEnabled
Does this mesh want flat shading?
Definition: mesh.h:90
bool IsEmpty() const
Definition: mesh.h:78
virtual HD_API VtValue GetShadingStyle(SdfPath const &id)
Returns the shading style for the given prim.
bool enableScalarOverride
Definition: mesh.h:107
float lineWidth
How big (in pixels) should line drawing be?
Definition: mesh.h:101
Definition: value.h:164
HdCullStyle cullStyle
The culling style: draw front faces, back faces, etc.
Definition: mesh.h:85
VtValue GetPoints(HdSceneDelegate *delegate) const
Definition: mesh.h:218
virtual HD_API bool GetDoubleSided(SdfPath const &id)
Returns the doubleSided state for the given prim.