Loading...
Searching...
No Matches
usdSceneIndexInputArgsSchema.h
Go to the documentation of this file.
1//
2// Copyright 2023 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
8
9/* ************************************************************************** */
10/* ** ** */
11/* ** This file is generated by a script. ** */
12/* ** ** */
13/* ** Do not edit it directly (unless it is within a CUSTOM CODE section)! ** */
14/* ** Edit hdSchemaDefs.py instead to make changes. ** */
15/* ** ** */
16/* ************************************************************************** */
17
18#ifndef PXR_USD_IMAGING_USD_IMAGING_USD_SCENE_INDEX_INPUT_ARGS_SCHEMA_H
19#define PXR_USD_IMAGING_USD_IMAGING_USD_SCENE_INDEX_INPUT_ARGS_SCHEMA_H
20
22
23#include "pxr/usdImaging/usdImaging/api.h"
24
25#include "pxr/imaging/hd/schema.h"
26
27// --(BEGIN CUSTOM CODE: Includes)--
28// --(END CUSTOM CODE: Includes)--
29
30PXR_NAMESPACE_OPEN_SCOPE
31
32// --(BEGIN CUSTOM CODE: Declares)--
35using UsdStageRefPtrDataSourceHandle = UsdStageRefPtrDataSource::Handle;
36// --(END CUSTOM CODE: Declares)--
37
38#define USD_IMAGING_USD_SCENE_INDEX_INPUT_ARGS_SCHEMA_TOKENS \
39 (usdSceneIndex) \
40 (stage) \
41 (includeUnloadedPrims) \
42 (displayUnloadedPrimsWithBounds) \
43 (addDrawModeSceneIndex) \
44
45TF_DECLARE_PUBLIC_TOKENS(UsdImagingUsdSceneIndexInputArgsSchemaTokens, USDIMAGING_API,
46 USD_IMAGING_USD_SCENE_INDEX_INPUT_ARGS_SCHEMA_TOKENS);
47
48//-----------------------------------------------------------------------------
49
50
53class UsdImagingUsdSceneIndexInputArgsSchema : public HdSchema
54{
55public:
58
59 UsdImagingUsdSceneIndexInputArgsSchema(HdContainerDataSourceHandle container)
60 : HdSchema(container) {}
61
67 USDIMAGING_API
68 static UsdImagingUsdSceneIndexInputArgsSchema GetFromParent(
69 const HdContainerDataSourceHandle &fromParentContainer);
70
72
73// --(BEGIN CUSTOM CODE: Schema Methods)--
74// --(END CUSTOM CODE: Schema Methods)--
75
78
79 USDIMAGING_API
80 UsdStageRefPtrDataSourceHandle GetStage() const;
81
82 USDIMAGING_API
83 HdBoolDataSourceHandle GetIncludeUnloadedPrims() const;
84
85 USDIMAGING_API
86 HdBoolDataSourceHandle GetDisplayUnloadedPrimsWithBounds() const;
87
88 USDIMAGING_API
89 HdBoolDataSourceHandle GetAddDrawModeSceneIndex() const;
90
92
95
98 USDIMAGING_API
99 static const TfToken &GetSchemaToken();
100
103 USDIMAGING_API
104 static const HdDataSourceLocator &GetDefaultLocator();
105
107
110
118 USDIMAGING_API
119 static HdContainerDataSourceHandle
120 BuildRetained(
121 const UsdStageRefPtrDataSourceHandle &stage,
122 const HdBoolDataSourceHandle &includeUnloadedPrims,
123 const HdBoolDataSourceHandle &displayUnloadedPrimsWithBounds,
124 const HdBoolDataSourceHandle &addDrawModeSceneIndex
125 );
126
134 {
135 public:
136 USDIMAGING_API
137 Builder &SetStage(
138 const UsdStageRefPtrDataSourceHandle &stage);
139 USDIMAGING_API
140 Builder &SetIncludeUnloadedPrims(
141 const HdBoolDataSourceHandle &includeUnloadedPrims);
142 USDIMAGING_API
143 Builder &SetDisplayUnloadedPrimsWithBounds(
144 const HdBoolDataSourceHandle &displayUnloadedPrimsWithBounds);
145 USDIMAGING_API
146 Builder &SetAddDrawModeSceneIndex(
147 const HdBoolDataSourceHandle &addDrawModeSceneIndex);
148
150 USDIMAGING_API
151 HdContainerDataSourceHandle Build();
152
153 private:
154 UsdStageRefPtrDataSourceHandle _stage;
155 HdBoolDataSourceHandle _includeUnloadedPrims;
156 HdBoolDataSourceHandle _displayUnloadedPrimsWithBounds;
157 HdBoolDataSourceHandle _addDrawModeSceneIndex;
158
159 };
160
162};
163
164PXR_NAMESPACE_CLOSE_SCOPE
165
166#endif
Represents an object that can identify the location of a data source.
Schema classes represent a structured view of the inherently unstructured container data source passe...
Definition: schema.h:26
A datasource representing a concretely-typed sampled value.
Definition: dataSource.h:193
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:71
Utility class for setting sparse sets of child data source fields to be filled as arguments into Buil...
USDIMAGING_API HdContainerDataSourceHandle Build()
Returns a container data source containing the members set thus far.
The outermost container for scene description, which owns and presents composed prims as a scenegraph...
Definition: stage.h:137
#define TF_DECLARE_REF_PTRS(type)
Define standard ref pointer types.
Definition: declarePtrs.h:58
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:92