Loading...
Searching...
No Matches
renderBufferSchema.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_RENDER_BUFFER_SCHEMA_H
19#define PXR_IMAGING_HD_RENDER_BUFFER_SCHEMA_H
20
22
23#include "pxr/imaging/hd/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)--
33// --(END CUSTOM CODE: Declares)--
34
35#define HD_RENDER_BUFFER_SCHEMA_TOKENS \
36 (renderBuffer) \
37 (dimensions) \
38 (format) \
39 (multiSampled) \
40
41TF_DECLARE_PUBLIC_TOKENS(HdRenderBufferSchemaTokens, HD_API,
42 HD_RENDER_BUFFER_SCHEMA_TOKENS);
43
44//-----------------------------------------------------------------------------
45
46
47class HdRenderBufferSchema : public HdSchema
48{
49public:
52
53 HdRenderBufferSchema(HdContainerDataSourceHandle container)
54 : HdSchema(container) {}
55
61 HD_API
62 static HdRenderBufferSchema 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 HdVec3iDataSourceHandle GetDimensions() const;
75
76 HD_API
77 HdFormatDataSourceHandle GetFormat() const;
78
79 HD_API
80 HdBoolDataSourceHandle GetMultiSampled() const;
81
83
86
89 HD_API
90 static const TfToken &GetSchemaToken();
91
94 HD_API
95 static const HdDataSourceLocator &GetDefaultLocator();
96
98
101
109 HD_API
110 static HdContainerDataSourceHandle
111 BuildRetained(
112 const HdVec3iDataSourceHandle &dimensions,
113 const HdFormatDataSourceHandle &format,
114 const HdBoolDataSourceHandle &multiSampled
115 );
116
124 {
125 public:
126 HD_API
127 Builder &SetDimensions(
128 const HdVec3iDataSourceHandle &dimensions);
129 HD_API
130 Builder &SetFormat(
131 const HdFormatDataSourceHandle &format);
132 HD_API
133 Builder &SetMultiSampled(
134 const HdBoolDataSourceHandle &multiSampled);
135
137 HD_API
138 HdContainerDataSourceHandle Build();
139
140 private:
141 HdVec3iDataSourceHandle _dimensions;
142 HdFormatDataSourceHandle _format;
143 HdBoolDataSourceHandle _multiSampled;
144
145 };
146
148};
149
150PXR_NAMESPACE_CLOSE_SCOPE
151
152#endif
Represents an object that can identify the location of a data source.
Utility class for setting sparse sets of child data source fields to be filled as arguments into Buil...
HD_API HdContainerDataSourceHandle Build()
Returns a container data source containing the members set thus far.
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:81