18#ifndef PXR_IMAGING_HD_SCENE_INDEX_INPUT_ARGS_SCHEMA_H
19#define PXR_IMAGING_HD_SCENE_INDEX_INPUT_ARGS_SCHEMA_H
23#include "pxr/imaging/hd/api.h"
25#include "pxr/imaging/hd/schema.h"
31PXR_NAMESPACE_OPEN_SCOPE
34struct HdRenderDelegateInfo;
36using HdRenderDelegateInfoDataSourceHandle = HdRenderDelegateInfoDataSource::Handle;
39#define HD_SCENE_INDEX_INPUT_ARGS_SCHEMA_TOKENS \
41 (cameraMotionBlurSupport) \
42 (legacyRenderDelegateInfo) \
45 HD_SCENE_INDEX_INPUT_ARGS_SCHEMA_TOKENS);
118 static HdContainerDataSourceHandle
120 const HdBoolDataSourceHandle &motionBlurSupport,
121 const HdBoolDataSourceHandle &cameraMotionBlurSupport,
122 const HdRenderDelegateInfoDataSourceHandle &legacyRenderDelegateInfo
136 const HdBoolDataSourceHandle &motionBlurSupport);
138 Builder &SetCameraMotionBlurSupport(
139 const HdBoolDataSourceHandle &cameraMotionBlurSupport);
141 Builder &SetLegacyRenderDelegateInfo(
142 const HdRenderDelegateInfoDataSourceHandle &legacyRenderDelegateInfo);
146 HdContainerDataSourceHandle
Build();
149 HdBoolDataSourceHandle _motionBlurSupport;
150 HdBoolDataSourceHandle _cameraMotionBlurSupport;
151 HdRenderDelegateInfoDataSourceHandle _legacyRenderDelegateInfo;
158PXR_NAMESPACE_CLOSE_SCOPE
Schema classes represent a structured view of the inherently unstructured container data source passe...
A datasource representing a concretely-typed sampled value.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.