Class DebugRenderingSettings

Options for debug rendering features

class Microsoft::Azure::RemoteRendering::DebugRenderingSettings final

Properties

RenderFrameCount

Controls the server-side overlay to render a frame counter.

auto GetRenderFrameCount() const noexcept -> bool;
auto SetRenderFrameCount(bool value) noexcept -> Microsoft::Azure::RemoteRendering::Status;

RenderPrimitiveCount

Controls the server-side overlay to render the primitive count.

auto GetRenderPrimitiveCount() const noexcept -> bool;
auto SetRenderPrimitiveCount(bool value) noexcept -> Microsoft::Azure::RemoteRendering::Status;

RenderWireframe

Controls whether geometry should be rendered as wireframe.

auto GetRenderWireframe() const noexcept -> bool;
auto SetRenderWireframe(bool value) noexcept -> Microsoft::Azure::RemoteRendering::Status;

Valid

Whether this object is still valid.

An object is invalid if it has been destroyed or if the connection has been lost. It is an error to call any other function on an invalid object.

auto GetValid() const noexcept -> bool;

See also