Loading...
Searching...
No Matches
requestAccessor.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_ACCESSOR_H
8#define PXR_USD_IMAGING_USD_EXEC_IMAGING_REQUEST_ACCESSOR_H
9
11
12#include "pxr/pxr.h"
13
14#include "pxr/usdImaging/usdExecImaging/api.h"
15
16#include "pxr/base/vt/value.h"
17
18#include <memory>
19
20PXR_NAMESPACE_OPEN_SCOPE
21
23
24using UsdExecImagingRequestAccessorSharedPtr =
25 std::shared_ptr<class UsdExecImagingRequestAccessor>;
26
29{
30public:
31 USDEXECIMAGING_API
33
42 const UsdExecImagingValueKey &valueKey) = 0;
43};
44
45PXR_NAMESPACE_CLOSE_SCOPE
46
47#endif
Interface for reading exec-computed values within a UsdExecImagingPrimAdapter.
virtual VtValue GetComputedValue(const UsdExecImagingValueKey &valueKey)=0
Reads the computed value identified by valueKey.
Identifies a value that is computed by exec.
Definition valueKey.h:27
Provides a container which may hold any type, and provides introspection and iteration over array typ...
Definition value.h:90