Loading...
Searching...
No Matches
backPlateAPIAdapter.h
1//
2// Copyright 2026 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_USD_IMAGING_USD_IMAGING_BACKPLATE_API_ADAPTER_H
8#define PXR_USD_IMAGING_USD_IMAGING_BACKPLATE_API_ADAPTER_H
9
11
12PXR_NAMESPACE_OPEN_SCOPE
13
14class UsdImagingBackPlateAPIAdapter : public UsdImagingAPISchemaAdapter
15{
16public:
17 using BaseAdapter = UsdImagingAPISchemaAdapter;
18
19 USDIMAGING_API
20 UsdImagingBackPlateAPIAdapter();
21
22 USDIMAGING_API
23 ~UsdImagingBackPlateAPIAdapter() override;
24
25 USDIMAGING_API
26 HdContainerDataSourceHandle GetImagingSubprimData(
27 UsdPrim const& prim,
28 TfToken const& subprim,
29 TfToken const& appliedInstanceName,
30 const UsdImagingDataSourceStageGlobals &stageGlobals);
31
32 USDIMAGING_API
33 HdDataSourceLocatorSet InvalidateImagingSubprim(
34 UsdPrim const& prim,
35 TfToken const& subprim,
36 TfToken const& appliedInstanceName,
37 TfTokenVector const& properties,
38 UsdImagingPropertyInvalidationType invalidationType);
39};
40
41PXR_NAMESPACE_CLOSE_SCOPE
42
43#endif
Represents a set of data source locators closed under descendancy.
Token for efficient comparison, assignment, and hashing of known strings.
Definition token.h:71
Base class for all API schema adapters.
This class is used as a context object with global stage information, that gets passed down to dataso...
UsdPrim is the sole persistent scenegraph object on a UsdStage, and is the embodiment of a "Prim" as ...
Definition prim.h:117
std::vector< TfToken > TfTokenVector
Convenience types.
Definition token.h:440