From aa4e613e58729dfd245a28872f9c622cb56bec08 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 15 May 2026 20:00:13 +0100 Subject: [PATCH] Fix docstring on IsStencilTestEnabled() --- renderdoc/api/replay/pipestate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renderdoc/api/replay/pipestate.h b/renderdoc/api/replay/pipestate.h index 61a7d7159..0401aec60 100644 --- a/renderdoc/api/replay/pipestate.h +++ b/renderdoc/api/replay/pipestate.h @@ -441,8 +441,8 @@ convenience of access. DOCUMENT(R"(Checks whether stencil operations are enabled or not. -:return: The currently stencil states. Front facing first, back facing second. -:rtype: Tuple[StencilFace, StencilFace] +:return: ``True`` if stencil testing is enabled. +:rtype: bool )"); bool IsStencilTestEnabled() const;