Loading...
Searching...
No Matches
dependencyForwardingSceneIndexPlugin.h
1//
2// Copyright 2022 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_HDPRMAN_DEPENDENCY_FORWARDING_SCENE_INDEX_PLUGIN_H
8#define PXR_IMAGING_HDPRMAN_DEPENDENCY_FORWARDING_SCENE_INDEX_PLUGIN_H
9
10#include "pxr/pxr.h"
11#if PXR_VERSION >= 2208
12
13#include "pxr/imaging/hd/sceneIndexPlugin.h"
14#include "hdPrman/api.h"
15
16PXR_NAMESPACE_OPEN_SCOPE
17
23class HdPrman_DependencyForwardingSceneIndexPlugin : public HdSceneIndexPlugin
24{
25public:
26 HdPrman_DependencyForwardingSceneIndexPlugin();
27
28protected:
29 HdSceneIndexBaseRefPtr _AppendSceneIndex(
30 const HdSceneIndexBaseRefPtr &inputScene,
31 const HdContainerDataSourceHandle &inputArgs) override;
32};
33
34PXR_NAMESPACE_CLOSE_SCOPE
35
36#endif // PXR_VERSION >= 2208
37
38#endif // PXR_IMAGING_HDPRMAN_DEPENDENCY_FORWARDING_SCENE_INDEX_PLUGIN_H