Loading...
Searching...
No Matches
bindingAPIAdapter.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_USD_IMAGING_USD_SKEL_IMAGING_BINDING_API_ADAPTER_H
8#define PXR_USD_IMAGING_USD_SKEL_IMAGING_BINDING_API_ADAPTER_H
9
10#include "pxr/pxr.h"
11#include "pxr/usdImaging/usdSkelImaging/api.h"
12
14
15PXR_NAMESPACE_OPEN_SCOPE
16
22{
23public:
25
26 USDSKELIMAGING_API
28
29 USDSKELIMAGING_API
31
32 USDSKELIMAGING_API
33 HdContainerDataSourceHandle GetImagingSubprimData(
34 UsdPrim const& prim,
35 TfToken const& subprim,
36 TfToken const& appliedInstanceName,
37 const UsdImagingDataSourceStageGlobals &stageGlobals) override;
38
39 USDSKELIMAGING_API
41 UsdPrim const& prim,
42 TfToken const& subprim,
43 TfToken const& appliedInstanceName,
44 TfTokenVector const& properties,
45 UsdImagingPropertyInvalidationType invalidationType) override;
46};
47
48
49PXR_NAMESPACE_CLOSE_SCOPE
50
51#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
API Schema adapter for UsdSkel's SkelBindingAPI.
USDSKELIMAGING_API HdDataSourceLocatorSet InvalidateImagingSubprim(UsdPrim const &prim, TfToken const &subprim, TfToken const &appliedInstanceName, TfTokenVector const &properties, UsdImagingPropertyInvalidationType invalidationType) override
Given the names of USD properties which have changed, an adapter may provide a HdDataSourceLocatorSet...
USDSKELIMAGING_API HdContainerDataSourceHandle GetImagingSubprimData(UsdPrim const &prim, TfToken const &subprim, TfToken const &appliedInstanceName, const UsdImagingDataSourceStageGlobals &stageGlobals) override
Returns an HdContainerDataSourceHandle representing the API schema's contributions to the primary pri...
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:440