Loading...
Searching...
No Matches
renderDelegateInfo.h
1//
2// Copyright 2025 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_IMAGING_HD_RENDER_DELEGATE_INFO_H
8#define PXR_IMAGING_HD_RENDER_DELEGATE_INFO_H
9
10#include "pxr/base/tf/token.h"
11
12PXR_NAMESPACE_OPEN_SCOPE
13
14class HdRenderDelegate;
15
16struct HdRenderDelegateInfo
17{
18 TfToken materialBindingPurpose;
19 TfTokenVector materialRenderContexts;
20 TfTokenVector renderSettingsNamespaces;
21 bool isPrimvarFilteringNeeded;
22 TfTokenVector shaderSourceTypes;
23 bool isCoordSysSupported;
24};
25
26PXR_NAMESPACE_CLOSE_SCOPE
27#endif
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:71
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:440