Loading...
Searching...
No Matches
debuggingSceneIndexPlugin.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_IMAGING_HDSI_DEBUGGING_SCENE_INDEX_PLUGIN_H
8#define PXR_IMAGING_HDSI_DEBUGGING_SCENE_INDEX_PLUGIN_H
9
10#include "pxr/imaging/hd/sceneIndexPlugin.h"
11#include "pxr/imaging/hdsi/api.h"
12#include "pxr/pxr.h"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
21class HdsiDebuggingSceneIndexPlugin : public HdSceneIndexPlugin
22{
23public:
24 HDSI_API
26
27protected:
28 HDSI_API
29 HdSceneIndexBaseRefPtr _AppendSceneIndex(
30 const HdSceneIndexBaseRefPtr &inputScene,
31 const HdContainerDataSourceHandle &inputArgs) override;
32};
33
34PXR_NAMESPACE_CLOSE_SCOPE
35
36#endif // PXR_IMAGING_HD_DEBUGGING_SCENE_INDEX_PLUGIN_H
Registers debugging scene index if env var HDSI_DEBUGGING_SCENE_INDEX_INSERTION_PHASE is an integer.