Loading...
Searching...
No Matches
extComputationPrimvarsSchema.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_IMAGING_HD_EXT_COMPUTATION_PRIMVARS_SCHEMA_H
19#define PXR_IMAGING_HD_EXT_COMPUTATION_PRIMVARS_SCHEMA_H
20
22
23#include "pxr/imaging/hd/api.h"
25
26#include "pxr/imaging/hd/schema.h"
27
28// --(BEGIN CUSTOM CODE: Includes)--
29// --(END CUSTOM CODE: Includes)--
30
31PXR_NAMESPACE_OPEN_SCOPE
32
33// --(BEGIN CUSTOM CODE: Declares)--
34// --(END CUSTOM CODE: Declares)--
35
36#define HD_EXT_COMPUTATION_PRIMVARS_SCHEMA_TOKENS \
37 (extComputationPrimvars) \
38
39TF_DECLARE_PUBLIC_TOKENS(HdExtComputationPrimvarsSchemaTokens, HD_API,
40 HD_EXT_COMPUTATION_PRIMVARS_SCHEMA_TOKENS);
41
42//-----------------------------------------------------------------------------
43
44
47class HdExtComputationPrimvarsSchema : public HdSchema
48{
49public:
52
53 HdExtComputationPrimvarsSchema(HdContainerDataSourceHandle container)
54 : HdSchema(container) {}
55
61 HD_API
62 static HdExtComputationPrimvarsSchema GetFromParent(
63 const HdContainerDataSourceHandle &fromParentContainer);
64
66
67// --(BEGIN CUSTOM CODE: Schema Methods)--
68// --(END CUSTOM CODE: Schema Methods)--
69
72
73 HD_API
74 TfTokenVector GetExtComputationPrimvarNames() const;
75
76 HD_API
77 HdExtComputationPrimvarSchema GetExtComputationPrimvar(const TfToken &name) const;
78
80
83
86 HD_API
87 static const TfToken &GetSchemaToken();
88
91 HD_API
92 static const HdDataSourceLocator &GetDefaultLocator();
93
95
98 HD_API
99 static HdContainerDataSourceHandle
100 BuildRetained(
101 size_t count,
102 const TfToken *names,
103 const HdDataSourceBaseHandle *values);
104
106};
107
108PXR_NAMESPACE_CLOSE_SCOPE
109
110#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
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:71
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:92
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:440