7#ifndef PXR_IMAGING_HD_RENDER_PASS_STATE_H
8#define PXR_IMAGING_HD_RENDER_PASS_STATE_H
11#include "pxr/imaging/hd/api.h"
12#include "pxr/imaging/hd/aov.h"
13#include "pxr/imaging/hd/version.h"
14#include "pxr/imaging/hd/enums.h"
16#include "pxr/imaging/cameraUtil/framing.h"
18#include "pxr/usd/sdf/path.h"
21#include "pxr/base/vt/value.h"
31PXR_NAMESPACE_OPEN_SCOPE
34using HdRenderPassStateSharedPtr = std::shared_ptr<class HdRenderPassState>;
35using HdResourceRegistrySharedPtr = std::shared_ptr<class HdResourceRegistry>;
58 virtual void Prepare(HdResourceRegistrySharedPtr
const &resourceRegistry);
64 using ClipPlanesVector = std::vector<GfVec4d>;
76 const std::optional<CameraUtilConformWindowPolicy> &
77 overrideWindowPolicy);
102 const std::optional<CameraUtilConformWindowPolicy> &
109 CameraUtilConformWindowPolicy
149 const GfVec4f& GetOverrideColor()
const {
return _overrideColor; }
155 const GfVec4f& GetWireframeColor()
const {
return _wireframeColor; }
158 void SetMaskColor(
GfVec4f const &color);
159 const GfVec4f& GetMaskColor()
const {
return _maskColor; }
162 void SetIndicatorColor(
GfVec4f const &color);
163 const GfVec4f& GetIndicatorColor()
const {
return _indicatorColor; }
169 const GfVec4f& GetPointColor()
const {
return _pointColor; }
174 float GetPointSize()
const {
return _pointSize; }
179 float GetPointSelectedSize()
const {
return _pointSelectedSize; }
184 bool GetLightingEnabled()
const {
return _lightingEnabled; }
187 void SetClippingEnabled(
bool enabled);
188 bool GetClippingEnabled()
const {
return _clippingEnabled; }
198 HdRenderPassAovBindingVector
const& GetAovBindings()
const;
204 HdRenderPassAovBindingVector
const& GetAovInputBindings()
const;
211 bool GetUseAovMultiSample()
const;
214 void SetCullStyle(HdCullStyle cullStyle);
216 HdCullStyle GetCullStyle()
const {
return _cullStyle; }
219 void SetAlphaThreshold(
float alphaThreshold);
220 float GetAlphaThreshold()
const {
return _alphaThreshold; }
223 void SetTessLevel(
float level);
224 float GetTessLevel()
const {
return _tessLevel; }
227 void SetDrawingRange(
GfVec2f const &drawRange);
228 GfVec2f GetDrawingRange()
const {
return _drawRange; }
230 GfVec2f GetDrawingRangeNDC()
const;
233 void SetDepthBiasUseDefault(
bool useDefault);
234 bool GetDepthBiasUseDefault()
const {
return _depthBiasUseDefault; }
237 void SetDepthBiasEnabled(
bool enabled);
238 bool GetDepthBiasEnabled()
const {
return _depthBiasEnabled; }
241 void SetDepthBias(
float constantFactor,
float slopeFactor);
244 void SetDepthFunc(HdCompareFunction depthFunc);
245 HdCompareFunction GetDepthFunc()
const {
return _depthFunc; }
248 void SetEnableDepthMask(
bool state);
250 bool GetEnableDepthMask()
const;
253 void SetEnableDepthTest(
bool enabled);
255 bool GetEnableDepthTest()
const;
258 void SetEnableDepthClamp(
bool enabled);
260 bool GetEnableDepthClamp()
const;
263 void SetDepthRange(
GfVec2f const &depthRange);
265 const GfVec2f& GetDepthRange()
const;
268 void SetStencil(HdCompareFunction func,
int ref,
int mask,
269 HdStencilOp fail, HdStencilOp zfail, HdStencilOp zpass);
270 HdCompareFunction GetStencilFunc()
const {
return _stencilFunc; }
271 int GetStencilRef()
const {
return _stencilRef; }
272 int GetStencilMask()
const {
return _stencilMask; }
273 HdStencilOp GetStencilFailOp()
const {
return _stencilFailOp; }
274 HdStencilOp GetStencilDepthFailOp()
const {
return _stencilZFailOp; }
275 HdStencilOp GetStencilDepthPassOp()
const {
return _stencilZPassOp; }
277 void SetStencilEnabled(
bool enabled);
279 bool GetStencilEnabled()
const;
282 void SetLineWidth(
float width);
283 float GetLineWidth()
const {
return _lineWidth; }
286 void SetBlend(HdBlendOp colorOp,
287 HdBlendFactor colorSrcFactor,
288 HdBlendFactor colorDstFactor,
290 HdBlendFactor alphaSrcFactor,
291 HdBlendFactor alphaDstFactor);
292 HdBlendOp GetBlendColorOp() {
return _blendColorOp; }
293 HdBlendFactor GetBlendColorSrcFactor() {
return _blendColorSrcFactor; }
294 HdBlendFactor GetBlendColorDstFactor() {
return _blendColorDstFactor; }
295 HdBlendOp GetBlendAlphaOp() {
return _blendAlphaOp; }
296 HdBlendFactor GetBlendAlphaSrcFactor() {
return _blendAlphaSrcFactor; }
297 HdBlendFactor GetBlendAlphaDstFactor() {
return _blendAlphaDstFactor; }
299 void SetBlendConstantColor(
GfVec4f const & color);
300 const GfVec4f& GetBlendConstantColor()
const {
return _blendConstantColor; }
302 void SetBlendEnabled(
bool enabled);
305 void SetAlphaToCoverageEnabled(
bool enabled);
306 bool GetAlphaToCoverageEnabled()
const {
return _alphaToCoverageEnabled; }
309 void SetColorMaskUseDefault(
bool useDefault);
310 bool GetColorMaskUseDefault()
const {
return _colorMaskUseDefault;}
313 void SetConservativeRasterizationEnabled(
bool enabled);
314 bool GetConservativeRasterizationEnabled()
const {
315 return _conservativeRasterizationEnabled;
319 void SetVolumeRenderingConstants(
float stepSize,
float stepSizeLighting);
328 void SetColorMasks(std::vector<ColorMask>
const& masks);
329 std::vector<ColorMask>
const& GetColorMasks()
const {
return _colorMasks; }
332 void SetMultiSampleEnabled(
bool enabled);
333 bool GetMultiSampleEnabled()
const {
return _multiSampleEnabled; }
342 std::optional<CameraUtilConformWindowPolicy> _overrideWindowPolicy;
351 bool _lightingEnabled;
352 bool _clippingEnabled;
356 float _pointSelectedSize;
361 float _alphaThreshold;
365 bool _depthBiasUseDefault;
366 bool _depthBiasEnabled;
367 float _depthBiasConstantFactor;
368 float _depthBiasSlopeFactor;
369 HdCompareFunction _depthFunc;
370 bool _depthMaskEnabled;
371 bool _depthTestEnabled;
372 bool _depthClampEnabled;
375 HdCullStyle _cullStyle;
378 HdCompareFunction _stencilFunc;
381 HdStencilOp _stencilFailOp;
382 HdStencilOp _stencilZFailOp;
383 HdStencilOp _stencilZPassOp;
384 bool _stencilEnabled;
390 HdBlendOp _blendColorOp;
391 HdBlendFactor _blendColorSrcFactor;
392 HdBlendFactor _blendColorDstFactor;
393 HdBlendOp _blendAlphaOp;
394 HdBlendFactor _blendAlphaSrcFactor;
395 HdBlendFactor _blendAlphaDstFactor;
400 bool _alphaToCoverageEnabled;
402 bool _colorMaskUseDefault;
403 std::vector<ColorMask> _colorMasks;
405 HdRenderPassAovBindingVector _aovBindings;
406 HdRenderPassAovBindingVector _aovInputBindings;
407 bool _useMultiSampleAov;
409 bool _conservativeRasterizationEnabled;
412 float _stepSizeLighting;
414 bool _multiSampleEnabled;
417PXR_NAMESPACE_CLOSE_SCOPE
Stores a 4x4 matrix of double elements.
Basic type for a vector of 2 float components.
Basic type for a vector of 4 double components.
Basic type for a vector of 4 float components.
Hydra schema for a camera that pulls the params (see above) during Sync.
A set of rendering parameters used among render passes.
HD_API GfMatrix4d GetImageToWorldMatrix() const
Compute a transform from window relative coordinates (x,y,z,1) to homogeneous world coordinates (x,...
GfVec4f const & GetViewport() const
Only use when clients did not specify a camera framing.
HD_API CameraUtilConformWindowPolicy GetWindowPolicy() const
The resolved window policy to conform the camera frustum.
virtual HD_API ClipPlanesVector const & GetClipPlanes() const
Returns HdCamera's clip planes.
HD_API void SetFraming(const CameraUtilFraming &framing)
Sets the framing to show the camera.
HD_API void SetOverrideWindowPolicy(const std::optional< CameraUtilConformWindowPolicy > &overrideWindowPolicy)
Sets whether to override the window policy used to conform the camera if its aspect ratio is not matc...
HD_API void SetAovInputBindings(HdRenderPassAovBindingVector const &aovBindings)
Set the AOVs that this renderpass needs to read from.
virtual HD_API void Prepare(HdResourceRegistrySharedPtr const &resourceRegistry)
Schedule to update renderPassState parameters.
HD_API void SetAovBindings(HdRenderPassAovBindingVector const &aovBindings)
Set the attachments for this renderpass to render into.
HD_API void SetCamera(const HdCamera *camera)
Sets the camera.
HD_API void SetPointColor(GfVec4f const &color)
Set a point color for rendering where the R, G and B components are the color and the alpha component...
HD_API void SetOverrideColor(GfVec4f const &color)
Set an override color for rendering where the R, G and B components are the color and the alpha compo...
HdCamera const * GetCamera() const
Get camera.
HD_API void SetPointSize(float size)
Set the point size for unselected points.
HD_API void SetViewport(const GfVec4d &viewport)
Sets the viewport to show the camera.
HD_API void SetWireframeColor(GfVec4f const &color)
Set a wireframe color for rendering where the R, G and B components are the color and the alpha compo...
HD_API void SetPointSelectedSize(float size)
Set the point size for selected points.
virtual HD_API GfMatrix4d GetProjectionMatrix() const
Compute projection matrix using physical attributes of an HdCamera.
HD_API void SetLightingEnabled(bool enabled)
XXX: Hacky way of disabling lighting.
const std::optional< CameraUtilConformWindowPolicy > & GetOverrideWindowPolicy() const
The override value for the window policy to conform the camera frustum that can be specified by the a...
HD_API void SetUseAovMultiSample(bool state)
Returns true if the render pass wants to render into the multi-sample aovs.
const CameraUtilFraming & GetFraming() const
Get framing information determining how the filmback plane maps to pixels.
virtual HD_API GfMatrix4d GetWorldToViewMatrix() const
Camera getter API.
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...