Loading...
Searching...
No Matches
requestBuilderInterface.h
Go to the documentation of this file.
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_EXEC_IMAGING_REQUEST_BUILDER_INTERFACE_H
8#define PXR_USD_IMAGING_USD_EXEC_IMAGING_REQUEST_BUILDER_INTERFACE_H
9
11
12#include "pxr/pxr.h"
13
14#include "pxr/usdImaging/usdExecImaging/api.h"
15
16PXR_NAMESPACE_OPEN_SCOPE
17
18class UsdAttribute;
19class UsdPrim;
20class TfToken;
21
26{
27public:
28 USDEXECIMAGING_API
30
34 virtual void AddValueKey(
35 const UsdPrim &providerPrim,
36 const TfToken &computationName) = 0;
37
41 virtual void AddValueKey(
42 const UsdAttribute &providerAttribute) = 0;
43};
44
45PXR_NAMESPACE_CLOSE_SCOPE
46
47#endif
Token for efficient comparison, assignment, and hashing of known strings.
Definition token.h:71
Scenegraph object for authoring and retrieving numeric, string, and array valued data,...
Definition attribute.h:183
Interface for building up an exec request within an implementation of UsdExecImagingPrimAdapterInterf...
virtual void AddValueKey(const UsdPrim &providerPrim, const TfToken &computationName)=0
The calling UsdExecImagingPrimAdapterInterface requires the computation of computationName provided b...
virtual void AddValueKey(const UsdAttribute &providerAttribute)=0
The calling UsdExecImagingPrimAdapterInterface requires the computed value of providerAttribute.
UsdPrim is the sole persistent scenegraph object on a UsdStage, and is the embodiment of a "Prim" as ...
Definition prim.h:117