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/imaging/hd/api.h"
11
12#include "pxr/base/tf/token.h"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
16class HdRenderDelegate;
17
18struct HdRenderDelegateInfo
19{
20 TfToken materialBindingPurpose;
21 TfTokenVector materialRenderContexts;
22 TfTokenVector renderSettingsNamespaces;
23 bool isPrimvarFilteringNeeded;
24 TfTokenVector shaderSourceTypes;
25 bool isCoordSysSupported;
26};
27
28HD_API
29bool operator==(const HdRenderDelegateInfo &, const HdRenderDelegateInfo &);
30
31HD_API
32bool operator!=(const HdRenderDelegateInfo &, const HdRenderDelegateInfo &);
33
34PXR_NAMESPACE_CLOSE_SCOPE
35#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